Adrian Bogatu

Results 5 comments of Adrian Bogatu

I have a couple of suggestions for @jgwest's questions. ### What format should this take? #### 1. User-controlled components Instead of allowing arbitrary access to any path component, we could...

> regex-based matching instead of globbing @svmaris I'm also not familiar with the code, but from a design perspective I believe that using regex **instead of** globbing would be a...

@svmaris But if you use both `path` and `pathRegexp`, and `pathRegexp` is only used to extract the named groups from the _already matched_ paths, then I think it should be...

@mmcdole Will this be merged? Is it because coverage cc @GaruGaru?

As a workaround you could use your own transport by implementing the `RoundTripper` interface to set the `User-Agent` header, like: ```go type UserAgentTransport struct { http.RoundTripper } func (c *UserAgentTransport)...