Commit fe7cc30a15b41134599b3713445bbe6135dbc29a
1 parent
0cc81973
Exists in
dev
AgentBasic sleep to see all its commands
Showing
3 changed files
with
4 additions
and
2 deletions
Show diff stats
privatedev/plugin/agent/AgentBasic.py
... | ... | @@ -215,7 +215,7 @@ class AgentBasic(Agent): |
215 | 215 | def _sleep_as_soon_as_running(self): |
216 | 216 | print("Make agent sleep as soon as a command has started running") |
217 | 217 | print("so that we can see this command in the 'current command' column of agent web pages") |
218 | - self.sleep(3) | |
218 | + self.sleep(5) | |
219 | 219 | |
220 | 220 | # @override |
221 | 221 | def do_things_before_exit(self, stopper_agent_name=None): | ... | ... |
src/core/pyros_django/agent/Agent.py
src/core/pyros_django/agent/AgentBasic.py
... | ... | @@ -215,7 +215,7 @@ class AgentBasic(Agent): |
215 | 215 | def _sleep_as_soon_as_running(self): |
216 | 216 | print("Make agent sleep as soon as a command has started running") |
217 | 217 | print("so that we can see this command in the 'current command' column of agent web pages") |
218 | - self.sleep(3) | |
218 | + self.sleep(5) | |
219 | 219 | |
220 | 220 | # @override |
221 | 221 | def do_things_before_exit(self, stopper_agent_name=None): | ... | ... |