forked from p15670423/monkey
BB: Fix API endpoints in MonkeyIslandClient
This commit is contained in:
parent
f0993d94cf
commit
c9b10bfc3f
|
@ -27,11 +27,11 @@ class MonkeyIslandClient(object):
|
||||||
return self.requests.get("api")
|
return self.requests.get("api")
|
||||||
|
|
||||||
def get_config(self):
|
def get_config(self):
|
||||||
return json.loads(self.requests.get("api/configuration/island").content)
|
return json.loads(self.requests.get("api/agent-configuration").content)
|
||||||
|
|
||||||
@avoid_race_condition
|
@avoid_race_condition
|
||||||
def import_config(self, config_contents):
|
def import_config(self, config_contents):
|
||||||
_ = self.requests.post("api/configuration/island", data=config_contents)
|
_ = self.requests.post("api/agent-configuration", data=config_contents)
|
||||||
|
|
||||||
@avoid_race_condition
|
@avoid_race_condition
|
||||||
def run_monkey_local(self):
|
def run_monkey_local(self):
|
||||||
|
|
Loading…
Reference in New Issue