Use post instead of get on initialize
This commit is contained in:
parent
c3bd6b6ecc
commit
b3a75d8069
|
@ -33,7 +33,7 @@ def initialize(config):
|
||||||
API arguments:
|
API arguments:
|
||||||
API schema: {json_data_object}
|
API schema: {json_data_object}
|
||||||
"""
|
"""
|
||||||
response = call_api(config, 'get', '/initialize')
|
response = call_api(config, 'post', '/initialize')
|
||||||
|
|
||||||
if response.status_code == 200:
|
if response.status_code == 200:
|
||||||
retstatus = True
|
retstatus = True
|
||||||
|
|
Loading…
Reference in New Issue