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
It appears that with the default router we're currently using, we're not able to set up regex-based endpoints, allowing us to do things like GET /users/{id}.
We need to integrate the gorilla-toolkit mux and use it for our go-kit endpoints.
The text was updated successfully, but these errors were encountered:
Currently getting {"error":"EOF"} when running a simple curl -X GET localhost:8080/user/2`. Possibly something is not right with the response, and perhaps we're not printing anything. Need to investigate.
It appears that with the default router we're currently using, we're not able to set up regex-based endpoints, allowing us to do things like
GET /users/{id}
.We need to integrate the gorilla-toolkit mux and use it for our go-kit endpoints.
The text was updated successfully, but these errors were encountered: