We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 82c0a8b + ff89229 commit 0f459bdCopy full SHA for 0f459bd
lib/vm.py
@@ -148,7 +148,11 @@ def is_ssh_up(self):
148
return False
149
150
def is_management_agent_up(self):
151
- return self.param_get('PV-drivers-version', 'major', accept_unknown_key=True) is not None
+ return (
152
+ self.param_get("PV-drivers-version", "major", accept_unknown_key=True) is not None
153
+ # HACK: workaround for Windows XS guest agents not updating major version after resume
154
+ or self.param_get("PV-drivers-version", "xenbus", accept_unknown_key=True) is not None
155
+ )
156
157
def wait_for_os_booted(self):
158
wait_for(self.is_running, "Wait for VM running")
0 commit comments