Juan Calderon-Perez

Results 1409 comments of Juan Calderon-Perez

@shangyin2024 The log package is standalone, for getting the requestid you have to call `requestid.FromContext(c)` and pass that as a field to the logger. You can also use the logger...

@shangyin2024 I'm working on a potential fix for this

@defany Not yet, v3 is still in Beta.

> @gaby a reminder that despite having merge right I do not have release rights on this project. I remember after tagging you! 😃

@Lislegaard You are better off running your own fork of `owncast`.

@cjames23 I'm also running into this situation. My host is behind a corporate proxy and since `v1.16.0` we are unable to install any package using hatch. Reverting to `

Related - https://github.com/valyala/fasthttp/issues/667 - #2032

@ghostdevxd Try setting max body limit: ```go srv := &fasthttp.Server{ // refuse anything above 1 MiB MaxRequestBodySize: 1

> > [@ghostdevxd](https://github.com/ghostdevxd) Try setting max body limit: > > srv := &fasthttp.Server{ > > // refuse anything above 1 MiB > > MaxRequestBodySize: 1 > } > > it...