Skip to content

Commit

Permalink
Merge pull request #237 from mulkieran/increase-dbus-monitor-wait
Browse files Browse the repository at this point in the history
Increase sleep time before stopping dbus-monitor
  • Loading branch information
mulkieran authored Feb 2, 2024
2 parents caef6b5 + 0e08ee2 commit e010538
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testlib/infra.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,11 +264,11 @@ def tearDown(self):
"""
trace = getattr(self, "trace", None)
if trace is not None:
# An eleven second sleep will make it virtually certain that
# A sixteen second sleep will make it virtually certain that
# stratisd has a chance to do one of its 10 second timer passes on
# pools and filesystems _and_ that the D-Bus task has at least one
# second to send out any resulting signals.
time.sleep(11)
time.sleep(16)
self.trace.send_signal(signal.SIGINT)
(stdoutdata, stderrdata) = self.trace.communicate()
msg = stdoutdata.decode("utf-8")
Expand Down

0 comments on commit e010538

Please sign in to comment.