From 76834664240ca7de795fc899fd2f806f45f56bf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Walstr=C3=B6m?= Date: Mon, 25 Aug 2025 20:42:02 +0200 Subject: [PATCH] test: infamy: Silence reachability check This was to verbose. --- test/infamy/netconf.py | 1 - test/infamy/restconf.py | 1 - 2 files changed, 2 deletions(-) diff --git a/test/infamy/netconf.py b/test/infamy/netconf.py index 68eb2265..6fa08496 100644 --- a/test/infamy/netconf.py +++ b/test/infamy/netconf.py @@ -22,7 +22,6 @@ from . import env, netutil def netconf_syn(addr): if netutil.tcp_port_is_open(addr, 830): - print(f"{addr} answers to TCP connections on port 830 (NETCONF)") return True else: return False diff --git a/test/infamy/restconf.py b/test/infamy/restconf.py index 63775e39..44d9de04 100644 --- a/test/infamy/restconf.py +++ b/test/infamy/restconf.py @@ -101,7 +101,6 @@ def restconf_reachable(neigh, password): response = requests_workaround_get(url, headers=headers, auth=auth, verify=False) if response.status_code == 200: - print(f"{neigh} answers to TCP connections on port 443 (RESTCONF)") return True except: return False