From b4ab447f0e86b06b898018701c1fbd8a568fc850 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Wed, 15 Apr 2020 11:32:53 +0300 Subject: Fix: manager status to pass in a timer to Manager --- contractor | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- cgit v1.2.1