We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4bcf70 commit 90cf406Copy full SHA for 90cf406
lib/solid_queue/supervisor.rb
@@ -29,6 +29,11 @@ def initialize(configuration)
29
end
30
31
def start
32
+ # suppress_warnings! is called automatically in Rails 8.
33
+ # See https://github.com/rails/solid_queue/issues/506
34
+ # Make sure to also suppress the warnings in Rails 7.1 and 7.2 usages of Solid Queue
35
+ SQLite3::ForkSafety.suppress_warnings! if defined?(SQLite3::ForkSafety)
36
+
37
boot
38
run_start_hooks
39
0 commit comments