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.
1 parent 8efa93c commit ed3b5cdCopy full SHA for ed3b5cd
scripts/update_ssh_config_guestfs.py
@@ -40,8 +40,10 @@ def get_addr(name):
40
while True:
41
attempt += 1
42
if attempt > timeout_seconds:
43
- raise Exception(f"Unable to get an address for {name} after {timeout_seconds}s. "
44
- f"VM may be taking longer to boot. Check 'virsh console {name}' for boot status.")
+ raise Exception(
+ f"Unable to get an address for {name} after {timeout_seconds}s. "
45
+ f"VM may be taking longer to boot. Check 'virsh console {name}' for boot status."
46
+ )
47
48
result = subprocess.run(
49
[
0 commit comments