Skip to content

Commit

Permalink
metrics server refusing connection issue is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
AmjadUllah committed Jul 26, 2019
1 parent f2189aa commit 4e6bf0f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion jqueuer_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,10 @@ def start(node_id):
node_id = sys.argv[1]
else:
node_id = "default_id_1"
start(node_id)
# Start metrics agent thread
metrics_agent_thread = Thread(target = monitoring.start, args = (metrics_agent_port,))
metrics_agent_thread.start()
# start jqueuer agent process
start(node_id)


0 comments on commit 4e6bf0f

Please sign in to comment.