Lucas Ridge

Results 27 comments of Lucas Ridge

most load balancers and proxies should be forwarding the host header [of the request] to the service in question given they are configured in a sane way. Granted this wouldn't...

this is all especially true if you're using any sort of https termination, as the proxy would need to forward tls encrypted requests to the service stack in question (be...

quick sketch of a go function that would probably do what we need ```go type versionTransport struct { http.RoundTripper } func (t *versionTransport) RoundTrip(req *http.Request) (resp *http.Response, err error) {...

I have not. I've mostly been switching to just using playwright instead of w3c driver based solutions.

While this is true, trying to add forking logic for the two doesn't really seem feasible. It may make more sense to just have two supported major versions that still...

So far it appears that I didn't consider the fact that ntlm auth needs to propagate down to wasabi to pull the wsdl. Almost makes me want to strip the...

The biggest concern i have is whether NTLM is going to function correctly, i have a local server i can use to integration test it though so pre-release sounds like...

looks like code climate is happy now.

@pcai do have a quick question for you, regarding the implementation of cookie parsing. Currently I have it set up so you can pass array'd cookie values under `_:` in...