def test_osds_listen_on_public_network(self, node, host):
# TODO: figure out way to paramaterize this test
- nb_port = (node["num_osds"] * 2)
+ nb_port = (node["num_osds"] * 4)
assert host.check_output(
"netstat -lntp | grep ceph-osd | grep %s | wc -l" % (node["address"])) == str(nb_port) # noqa E501
def test_osds_listen_on_cluster_network(self, node, host):
# TODO: figure out way to paramaterize this test
- nb_port = (node["num_osds"] * 2)
+ nb_port = (node["num_osds"] * 4)
assert host.check_output("netstat -lntp | grep ceph-osd | grep %s | wc -l" % # noqa E501
(node["cluster_address"])) == str(nb_port)