Skip to content

Commit d149e75

Browse files
committed
Fix headers validation which is an array
1 parent 3e7e1d0 commit d149e75

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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.21'
6+
__version__ = '0.1.22'
77

88

serverdensity/wrapper/schema/services.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
"required": ["username", "password"]
8282
},
8383
"headers": {
84-
"type": ["object", "null"]
84+
"type": ["array", "null"]
8585
},
8686
"body": {
8787
"type": "string"

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.21',
37+
version='0.1.22',
3838
description="A python wrapper for the Server Density Api",
3939
long_description=readme + '\n\n', # + history,
4040
author="Jonathan Sundqvist",

0 commit comments

Comments
 (0)