summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcontractor3
1 files changed, 2 insertions, 1 deletions
diff --git a/contractor b/contractor
index 7a4253e..5389a0a 100755
--- a/contractor
+++ b/contractor
@@ -120,7 +120,8 @@ class ContractorApplication(cliapp.Application):
return BuildSpec(f.read())
def cmd_manager_status(self, args):
- m = self.manager()
+ timer = Timer(self.verbose)
+ m = self.manager(timer)
if m.ssh(['true']).failed():
self.error('Manager VM is NOT available')
sys.exit(1)