Skip to content

Commit

Permalink
hide ps aux stdout for openstack
Browse files Browse the repository at this point in the history
  • Loading branch information
cbartz committed Jul 10, 2024
1 parent 987cdfc commit 3aca06c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src-docs/openstack_manager.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ Construct OpenstackRunnerManager object.

---

<a href="../src/openstack_cloud/openstack_manager.py#L1479"><img align="right" style="float:right;" src="https://img.shields.io/badge/-source-cccccc?style=flat-square"></a>
<a href="../src/openstack_cloud/openstack_manager.py#L1478"><img align="right" style="float:right;" src="https://img.shields.io/badge/-source-cccccc?style=flat-square"></a>

### <kbd>method</kbd> `flush`

Expand Down
1 change: 0 additions & 1 deletion src/openstack_cloud/openstack_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,6 @@ def _ssh_health_check(conn: OpenstackConnection, server_name: str, startup: bool

result: invoke.runners.Result = ssh_conn.run("ps aux", warn=True)
logger.debug("Output of `ps aux` on %s stderr: %s", server_name, result.stderr)
logger.debug("Output of `ps aux` on %s stdout: %s", server_name, result.stdout)
if not result.ok or RUNNER_STARTUP_PROCESS not in result.stdout:
logger.warning("List all process command failed on %s ", server_name)
return False
Expand Down

0 comments on commit 3aca06c

Please sign in to comment.