Search code examples
sidekiqruby-on-rails-6sidekiq-monitor

Sidekiq web returns a blank page with empty body


I am trying to access the sidekiq web however I am getting a blank page. No error or message.

I am using the following env.:

ruby 2.6.3
Rails 6.0.2.1 (inc. zeitwerk)
rack 2.1.2
sidekiq 6.0.4

If I am grading sidekiq down to version 5.2.7 without zeitwerk, I get no content from the sidekiq web as well. So this must be a generall issue.

If I access the sidekiq web a blank page / html body is returned. Thin show the following requests:

Started GET "/admin/sidekiq" for ::1 at 2020-02-07 11:32:58 +0100
Started GET "/admin/sidekiq/stylesheets/bootstrap.css" for ::1 at 2020-02-07 11:32:58 +0100
Started GET "/admin/sidekiq/stylesheets/application.css" for ::1 at 2020-02-07 11:32:58 +0100
Started GET "/admin/sidekiq/stylesheets/application-dark.css" for ::1 at 2020-02-07 11:32:58 +0100

Any idea is appreciated


Solution

  • rack version 2.1.2 is buggy. I have been downgrading to version 2.0.8.

    GemFile

    gem 'rack', "2.0.8"