Rob Landers
Rob Landers
Parallel extension probably isn't compatible with go stacks/memory, if I had to guess (possibly collisions with channels and other shenanigans, plus maintaining threads). It's probably better to break out the...
Considering that https://github.com/krakjoe/parallel/issues/308 is still open ... it isn't fixed.
For the too many redirects issue, take a look at the Location header to try and diagnose where the redirect comes from. I think you need to discover if it...
I believe this happens if you spend too long processing a message in the message loop. You need to take the message off the "queue" and return processing to the...
AFAICT, the issue appears to be that heartbeats are only processed when calling `iter.Next()` so you need to call it again asap.
Indeed! Looking at the code, it looks like this error might be coming from networking issues as the heartbeat isn't paused/reset during reconnection: https://github.com/nats-io/nats.go/blob/8894a274f4f5f00fd602f74cef462184e31d0256/jetstream/pull.go#L608-L630
I can confirm that the above PR appears to fix the issue -- at least, I haven't seen this message in awhile now.
@VuongUranus try adding this to your go.mod file and see if you are also not seeing the issue anymore? ```go replace github.com/nats-io/nats.go => github.com/withinboredom/nats.go patch-1 ```
Correct. Caddy/FrankenPHP defaults to `text/html` while lightspeed perhaps defaults to `application/json`. This should be specified by your application, usually (even if there are defaults).
Env vars set with the env subdirective in the php(_server) directive are not available to `getenv()`
I also discovered this just last night, and I’m already working on a fix. :)