diff --git a/Changelog.md b/Changelog.md index 9fe538216..ee3c9e7e4 100644 --- a/Changelog.md +++ b/Changelog.md @@ -89,6 +89,7 @@ With the port to Bootstrap 3, app/views/terms/default.haml has a new structure. ## 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