-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Help with running ld-relay as part of an application #133
Comments
I believe the problem has to do with how routers work in gorilla/mux. When you put your I'm not sure if gorilla/mux has a way to say "pass this request on to another router while stripping the path prefix" when the other router (in this case But Go does have a helper for this kind of thing: router.PathPrefix("/relay").Handler(http.StripPrefix("/relay", r)) |
thanks! I made a PR to update the README in case someone else has the same problem. |
(v6 - #1) better use of types for config validation + SDK credential abstraction
Describe the bug
Could you please tell me what I'm doing wrong? I'm trying to build ld-relay within an application.
To reproduce
Expected behavior
Expect
curl http://localhost:8030/relay/status
not to return a 404The text was updated successfully, but these errors were encountered: