Skip to content
Snippets Groups Projects
Commit e67e9763 authored by Nikolay Stanchev's avatar Nikolay Stanchev
Browse files

removed port number used for testing

parent fdc0505d
No related branches found
No related tags found
No related merge requests found
......@@ -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])
......
......@@ -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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment