Skip to content

Commit

Permalink
Update maintenance page and linting for sidekiq.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
eleanorreem committed Oct 24, 2024
1 parent d1b7468 commit 2ab6049
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/errors/internal_server_error.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<div class="container-fluid col-text">
<div class="py-3 px-lg-5 col-12">
<p class="lead text-center">
It might take a while but we will be back soon! In the meantime, head back to the <a href="https://soulmedicine.io" target="_blank">Homepage</a> or if you feel this is an error let us know at <i>team at soulmedicine.io</i>
It might take a while but we will be back soon! In the meantime, head back to the <a href="https://soulmedicine.io" target="_blank">Soulmedicine Homepage</a> or to the <a href="https://chayn.co" target="_blank">Chayn Homepage</a> if you feel this is an error let us know at <i>team at soulmedicine.io</i>
</p>
</div>
</div>
13 changes: 13 additions & 0 deletions config/initializers/sidekiq.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Sidekiq.configure_server do |config|
config.redis = {
url: ENV['REDIS_URL'],
ssl_params: { verify_mode: OpenSSL::SSL::VERIFY_NONE }
}
end

Sidekiq.configure_client do |config|
config.redis = {
url: ENV['REDIS_URL'],
ssl_params: { verify_mode: OpenSSL::SSL::VERIFY_NONE }
}
end

0 comments on commit 2ab6049

Please sign in to comment.