| Index: server/crashcollect.py
|
| diff --git a/server/crashcollect.py b/server/crashcollect.py
|
| index 1f28861dcdf60f57fd181453cb4125790eb1a758..6e1de7fdf0d21dce03f0a4923244683b1c3cf70b 100644
|
| --- a/server/crashcollect.py
|
| +++ b/server/crashcollect.py
|
| @@ -46,8 +46,8 @@ def wait_for_machine_to_recover(host, hours_to_wait=4.0):
|
| logging.info("%s already up, collecting crash info", host.hostname)
|
| return True
|
|
|
| - logging.info("Waiting four hours for %s to come up (%s)",
|
| - host.hostname, current_time)
|
| + logging.info("Waiting %s hours for %s to come up (%s)",
|
| + hours_to_wait, host.hostname, current_time)
|
| if not host.wait_up(timeout=hours_to_wait * 3600):
|
| logging.warning("%s down, unable to collect crash info",
|
| host.hostname)
|
|
|