diff --git a/Changelog.md b/Changelog.md index ce5ce969e..56d83be43 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,6 +4,7 @@ ## Bug fixes * Redirect to sign in page when a background request fails with 401 [#6496](https://github.com/diaspora/diaspora/pull/6496) +* Correctly skip setting sidekiq logfile on Heroku [#6500](https://github.com/diaspora/diaspora/pull/6500) ## Features diff --git a/config/sidekiq.yml b/config/sidekiq.yml index 5ea3d5fa1..50d7a8b5c 100644 --- a/config/sidekiq.yml +++ b/config/sidekiq.yml @@ -1,7 +1,9 @@ <% require_relative 'config/load_config' %> --- :verbose: false -:logfile: "<%= AppConfig.sidekiq_log unless AppConfig.heroku? %>" +<% unless AppConfig.heroku? %> +:logfile: "<%= AppConfig.sidekiq_log %>" +<% end %> :concurrency: <%= AppConfig.environment.sidekiq.concurrency.to_i %> :queues: - socket_webfinger