forked from p34709852/monkey
Agent: Don't propagate if depth == 0
This commit is contained in:
parent
fd2143a4df
commit
41287d458b
|
@ -162,7 +162,7 @@ class AutomatedMaster(IMaster):
|
|||
# still running.
|
||||
credential_collector_thread.join()
|
||||
|
||||
if self._can_propagate():
|
||||
if self._can_propagate() and config["depth"] > 0:
|
||||
self._propagator.propagate(config["propagation"], self._stop)
|
||||
|
||||
payload_thread = create_daemon_thread(
|
||||
|
|
Loading…
Reference in New Issue