Mikael Henriksson

Results 175 comments of Mikael Henriksson

Thanks for reporting back @ArturT! I was always wondering why sidekiq uses `network_timeout:` to set `timeout:` on the redis connection in redis-rb. Seems like it would be better to just...

Hi @ArturT, it seems like `pool_timeout` in sidekiq translates to `timeout` in connection pool and `connect_timeout` translates to `timeout` in Redis so indeed you must be using both. If you...

```ruby sidekiq_redis_config = { url: Secret.sidekiq_redis_url, namespace: REDIS_SIDEKIQ_NAMESPACE, # tune network timeouts to be a little more lenient when you are seeing occasional timeout errors for Heroku Redis Cloud addon...

No that would not be the case @benedikt. I recommend you check what @ArturT has done above and the conclusions we came to while debugging his issues (that by the...

Point taken, I'll have a look at making sure we only use a connection when needed.

There is no leaking of connections from what I can tell. That said, it does require more redis connection for the extra work. If you didn't already have a ton...

Let me know if that helps

Thank you for the confirmation @benedikt! I will disable it per default in the next release and refactor the resurrector.

@woodhull https://github.com/mhenrixon/sidekiq-unique-jobs/issues/617#issuecomment-876391761

I will have a look shortly.