Ibrahim Awwal
Ibrahim Awwal
I think one potential solution is to not enable parameter logging, but instead do something like this in your initializer: (ref #66) `fields[:params] = request.filtered_parameters.to_json` That should give you a...
I think this was fixed and can be closed?
This might be related, although I haven't yet looked through the code to figure out what it actually does. But it seems likely to do something like this: https://github.com/uber-workflow/probot-app-release-notes GitHububer-workflow/probot-app-release-notesprobot-app-release-notes...
Is this also the reason that enqueuing Sidekiq-grouping enabled jobs in a test results in the job being pushed to the user's development Redis and getting processed (and usually failing)...
Ahh, using `force_flush_for_test!` fixes the issue I was seeing. I guess it's because Sidekiq::Grouping has its own queues separate from Sidekiq, and they aren't namespaced, so if your test environment...
Hmm, just to make sure I'm on the same page - is SolidQueue supposed to auto-reload code in development? I remember back in the day Sidekiq did not, but I...