Skip to content

Commit 7683466

Browse files
committed
test: infamy: Silence reachability check
This was to verbose.
1 parent 6cc380d commit 7683466

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

test/infamy/netconf.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222

2323
def netconf_syn(addr):
2424
if netutil.tcp_port_is_open(addr, 830):
25-
print(f"{addr} answers to TCP connections on port 830 (NETCONF)")
2625
return True
2726
else:
2827
return False

test/infamy/restconf.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ def restconf_reachable(neigh, password):
101101
response = requests_workaround_get(url, headers=headers, auth=auth,
102102
verify=False)
103103
if response.status_code == 200:
104-
print(f"{neigh} answers to TCP connections on port 443 (RESTCONF)")
105104
return True
106105
except:
107106
return False

0 commit comments

Comments
 (0)