Skip to content

Commit 25f2904

Browse files
committed
Fix auth validation in services
1 parent d149e75 commit 25f2904

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

Diff for: serverdensity/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33

44
__author__ = 'Jonathan Sundqvist'
55
__email__ = '[email protected]'
6-
__version__ = '0.1.22'
6+
__version__ = '0.1.23'
77

88

Diff for: serverdensity/wrapper/schema/services.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"type": ["string", "null"]
7070
},
7171
"auth": {
72-
"type": "object",
72+
"type": ["object", "null"],
7373
"properties": {
7474
"username": {
7575
"type": "string"

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
setup(
3636
name='sd-python-wrapper',
37-
version='0.1.22',
37+
version='0.1.23',
3838
description="A python wrapper for the Server Density Api",
3939
long_description=readme + '\n\n', # + history,
4040
author="Jonathan Sundqvist",

Diff for: tests/json/service.json

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"checkLocations": [
99
"dub"
1010
],
11+
"auth": null,
1112
"group": null,
1213
"headers": null,
1314
"type": "service",

0 commit comments

Comments
 (0)