forked from p15670423/monkey
BB: 'kill_time' -> 'terminate_time'
This commit is contained in:
parent
11f443e641
commit
1632d8b3e9
|
@ -89,7 +89,7 @@ class MonkeyIslandClient(object):
|
||||||
@avoid_race_condition
|
@avoid_race_condition
|
||||||
def kill_all_monkeys(self):
|
def kill_all_monkeys(self):
|
||||||
response = self.requests.post_json(
|
response = self.requests.post_json(
|
||||||
"api/agent-signals/terminate-all", json={"kill_time": time.time()}
|
"api/agent-signals/terminate-all", json={"terminate_time": time.time()}
|
||||||
)
|
)
|
||||||
if response.ok:
|
if response.ok:
|
||||||
LOGGER.info("Killing all monkeys after the test.")
|
LOGGER.info("Killing all monkeys after the test.")
|
||||||
|
|
Loading…
Reference in New Issue