Nick Coyne

Results 9 comments of Nick Coyne

+1 for this feature.

Unfortunately exactly the same result just running `db:migrate`. I'm using the latest `2.1.6`. Also I tried a fresh Rails 5.2 app and got the same result... ``` $ rails db:create...

It seems to be an issue on Rails 5.1 too, I just tried with a fresh application.

I get this same error with Carrierwave trying to set a remote url for an image.

I think my issue is caused by https://github.com/arkadiyt/ssrf_filter/issues/56

Thanks for the response. `repo:gc` is the one I use fairly regularly. We have a rather large app and I need to gc every week or two to keep the...

In that case `repo:gc` is far less important to me. So perhaps your deprecation/sunset suggestion is the best path forward.

Thanks @edmorley! I'm sure I would have been following one of those articles. The official resources you've listed are far more useful. Cheers

This is my full sidekiq config: ```ruby require 'sidekiq' require 'sidekiq-unique-jobs' redis_options = { network_timeout: 5 } Sidekiq.configure_client do |config| config.redis = redis_options config.client_middleware do |chain| chain.add SidekiqUniqueJobs::Middleware::Client end end...