diff --git a/src/service/clmcservice/generate_network_measurements.py b/src/service/clmcservice/generate_network_measurements.py index 3b88cce9d10c3e88e1b86bd118b7bb2d66590026..bf36f9d11a7456e42c292fcc735a1b62d6cba854 100644 --- a/src/service/clmcservice/generate_network_measurements.py +++ b/src/service/clmcservice/generate_network_measurements.py @@ -36,7 +36,7 @@ def report_network_measurements(influx_host, db_name, json_data, neo4j_host, neo print("Writing network latency data to influx..\n") assert db_client.write_points(json_body) # assert the write method returns True - successful write - graph = Graph(host=neo4j_host, password=neo4j_password, port=11005) + graph = Graph(host=neo4j_host, password=neo4j_password) print("Building network links from the ping telegraf plugin in influx") compute_nodes = set([host for host, url, avg_ms, min_ms, max_ms in data]) diff --git a/src/service/clmcservice/graphapi/conftest.py b/src/service/clmcservice/graphapi/conftest.py index 5dfd3b78b7d79e11ec097c53c3a1a25ae7fd8a5e..7180db52939b6830390e13fc53a0958f62e87776 100644 --- a/src/service/clmcservice/graphapi/conftest.py +++ b/src/service/clmcservice/graphapi/conftest.py @@ -130,7 +130,7 @@ def db_testing_data(): test_db_name = "TestInfluxDB" influx = InfluxDBClient(host="localhost", port=8086, timeout=10) - graph = Graph(host="localhost", password="admin", port="11005") + graph = Graph(host="localhost", password="admin") graph.delete_all() dbs = influx.get_list_database()