Results 55 comments of Mustaque Ahmed

I faced a similar issue; in my case, I could fix the test case by removing `console.log` statements from the code. Because of `console.log` in my test case promises were...

@adam-p thank you for working on this. In order to fix the pipeline issue. You need to add line `//go:build go1.8` at the top of the file `handlers_go18_test.go` in the...

:wave: @sedefsavas, I would love to work on this issue. Could you please share some pointers in order to fix this issue and how to reproduce/test locally?

Hi there, looks like there is no active development on this issue. I can take it up.

> Hi @imrushi, @amustaque97 wanted this issue, @amustaque97 do you still want it? Hey @TzlilSwimmer123, I have no issues if @imrushi wants to work on this. Please go ahead 🚀

Correct syntax to call `Methods` method is to write something like this: ```golang mux.HandleFunc("/test", handler).Methods("PUT", "GET", "OPTIONS") ``` I believe there are ample examples mentioned in the `README.md` file. For...

I'm not able to understand your use-case. In my opinion your use-case is incorrect because — let's assume we got two routes ```console 1. /first/{key} — FirstHandler 2. /second/{value} —...

> No way to restruct mux.Vars(req) for new request? I'm not getting time because of release at my office. I actually wanted to check method [mux.BuildVarsFunc](https://github.com/gorilla/mux/blob/d07530f46e1eec4e40346e24af34dcc6750ad39f/route.go#L457) before adding any comment...

@Fyria30, thank you so much for waiting so long. I'm afraid I don't think there is any other way to achieve internal redirection. You can follow your current implementation. Thank...