Nabiel Omar Syarif

Results 15 comments of Nabiel Omar Syarif

Wow, Good findings @georgehao If I understand correctly, the race is happen between `go rs.awaitDone(ctx, txctx)` from sql package and the gin `ServeHTTP` that trying to serve new request comes...

> Almost correct, only tweak a little. owing to `rs.close(ctx.Err())` => `ctx.Err()` cause the `data race`. If I read your data race stack trace, the race comes from `

Oh my bad I didn't notice that the stacktrace shows the race comes from `ctx.Err()` that trying to read *gin.Context.Request

I think it's not a bug. That's how gin works, you need to flush the buffer to write response to client. This is equivalent code when using net/http lib. ```go...

> There seems to be a bug that gin writes that header both in response header phase and trailer phase. No, gin just buffers the headers and proxy it to...

Sorry, I've just noticed there's a bug. When we navigate back from memo detail and the Home page already has more than 1 page of memos in the store (I...

I encountered many problems because we reused the same store on multiple pages (the homepage, the explore page, and others). I think we can do a workaround. By using full...

@makanSukros no, this is not fix the root cause I am who made this quick fix in my repo https://github.com/kbiits/Whiskey-Baileys please don't just copy paste and made a PR for...

> I personally don't experience this issue. Maybe there is something wrong with your code/ misconfigure or missing auth/ something else. I suggest to close this pr and investigate the...

@raphaelvserafim Use this for temporary workaround https://github.com/kbiits/Whiskey-Baileys