Erik Dubbelboer

Results 312 comments of Erik Dubbelboer

504 is not something fasthttp returns.

This is sort of implemented in https://github.com/playcanvas/engine/pull/6009, [here](https://github.com/playcanvas/engine/blob/0709cfad6d3f4100cd7746745a522cfdb2fef3ff/src/platform/graphics/webgpu/webgpu-compute.js#L60-L95) and [here](https://github.com/playcanvas/engine/blob/0709cfad6d3f4100cd7746745a522cfdb2fef3ff/src/platform/graphics/webgpu/webgpu-buffer.js#L95-L100).

You can disable this conditionally only for Safari: ```go acceptOptions := &websocket.AcceptOptions{ // ... } userAgentLower := strings.ToLower(r.Header.Get("User-Agent")) isSafari := strings.Contains(userAgentLower, "safari") && !strings.Contains(userAgentLower, "chrome") && !strings.Contains(userAgentLower, "android") if isSafari...

What is the benefit of this? It just complicates the code and increases the size. And map.Copy just does exactly the same so there is no speed difference. I think...

Can you show me the rest of your handler, how you use `SaveMultipartFile`?

You are right. You mind making a pull request to fix it?

This seems to work just fine, can you provide a complete sample where it doesn't work? ```go func main() { go func() { if err := http.ListenAndServe(":6060", http.HandlerFunc(func(w http.ResponseWriter, r...

We are also almost done moving away from RethinkDB I'm afraid.

I see you 👍 the comment above @JayChoi1736 , was that the issue? Can this be closed?

@klauspost did you ever managed to do this? I'm running into the same issue where I need to turn a testcase into a Go test to try and understand what...