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
Searching triggers a fetch of topologies which is throwing errors in the console. The search functionality itself seems to still work, since it does not rely on the result of the fetch. I'm not sure why searching needs to trigger that request, but its not working.
dispatch({type: ActionTypes.FOCUS_SEARCH});// update nodes cache to allow search across all topologies,// wait a second until animation is oversetTimeout(()=>{getAllNodes(getState,dispatch);},1200);
Moved from weaveworks/service#1053
The leading slash in the
topologyUrlsById
is causing the incorrect route to be requested.Repro steps:
JSON.parse()
errors will appear in the console, as a result of a call to /api/topology/containersThe request to
https://cloud.weave.works/api/topology/containers
should be
https://cloud.weave.works/api/app/loud-breeze-77/api/topology/containers
The text was updated successfully, but these errors were encountered: