You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using a custom Date::DATE_FORMATS[:default] in my application, and this breaks the expectation that #{Time.now.utc.to_date} will always return something formatted as "%Y-%m-%d".
Not sure if this should be considered an issue on Sidekiq part, but using #{Time.now.utc.strftime "%Y-%m-%d"} instead for the failed and processed history redis keys would fix this.
Sidekiq v3.5.0
I'm using a custom Date::DATE_FORMATS[:default] in my application, and this breaks the expectation that
#{Time.now.utc.to_date}
will always return something formatted as "%Y-%m-%d".Not sure if this should be considered an issue on Sidekiq part, but using
#{Time.now.utc.strftime "%Y-%m-%d"}
instead for the failed and processed history redis keys would fix this.https://github.com/mperham/sidekiq/blob/master/lib/sidekiq/processor.rb#L106 & https://github.com/mperham/sidekiq/blob/master/lib/sidekiq/processor.rb#L118
The text was updated successfully, but these errors were encountered: