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 84234fe commit 575d058Copy full SHA for 575d058
testinfra/test_ami_nix.py
@@ -375,9 +375,7 @@ def is_healthy(ssh) -> bool:
375
result = run_ssh_command(ssh, command)
376
if not result["succeeded"]:
377
info_text = ""
378
- info_command = (
379
- f"sudo journalctl -b -u {service} -n 20 --no-pager"
380
- )
+ info_command = f"sudo journalctl -b -u {service} -n 20 --no-pager"
381
info_result = run_ssh_command(ssh, info_command)
382
if info_result["succeeded"]:
383
info_text = "\n" + info_result["stdout"].strip()
0 commit comments