You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The behavior of monitor_deployment_status is incorrect for the following reasons:
The query uses the wrong filter key, resulting in the expected 0 index value potentially being the status for a different deployment. It should be the following:
The status_url is not the correct URL. On my local-network, it's set to http://172.17.0.1:8000/status instead of http://localhost:8030/graphql, despite the latter being set as --graph-node-status-endpoint.
The text was updated successfully, but these errors were encountered:
The status_url is not the correct URL. On my local-network, it's set to http://172.17.0.1:8000/status instead of http://localhost:8030/graphql, despite the latter being set as --graph-node-status-endpoint.
indexer service exposes a /status endpoint for indexing statuses queries, it basically just routes the queries to --graph-node-status-endpoint. If you curl to http://172.17.0.1:8000/status, it should give you the same responses. Could you help me understand the issue a bit better?
It's possible that I'm misunderstanding how this should work, but one gives the expected response, the other just returns {"message": "Not found"} (using graph-node v0.33.0):
I think I understood the problem, pls lmk if #91 fixes the problem with monitor_deployment_status; this doesn't change anything for the curl request to localhost/status, even though that should've worked for indexer service endpoint🤔
The behavior of
monitor_deployment_status
is incorrect for the following reasons:status_url
is not the correct URL. On my local-network, it's set tohttp://172.17.0.1:8000/status
instead ofhttp://localhost:8030/graphql
, despite the latter being set as--graph-node-status-endpoint
.The text was updated successfully, but these errors were encountered: