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 3970338 + c30c48c commit e3c8f41Copy full SHA for e3c8f41
cardano_node_tests/cluster_management/netstat_tools.py
@@ -15,7 +15,7 @@ def get_netstat_out() -> str:
15
"""Get output of the `netstat` command."""
16
try:
17
return helpers.run_command(
18
- "netstat -pant | grep -E 'LISTEN|TIME_WAIT|CLOSE'", ignore_fail=True, shell=True
+ "netstat -pant | grep -E 'LISTEN|TIME_WAIT'", ignore_fail=True, shell=True
19
).decode()
20
except Exception as excp:
21
LOGGER.error(f"Failed to fetch netstat output: {excp}") # noqa: TRY400
0 commit comments