Skip to content

Commit 256be75

Browse files
committed
Rename Supervisor::Forks to Supervisor::ForkSupervisor
1 parent 601266e commit 256be75

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/solid_queue/supervisor.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def start(mode: :fork, load_configuration_from: nil)
1212
SolidQueue.supervisor = true
1313
configuration = Configuration.new(load_from: load_configuration_from)
1414

15-
Forks.new(configuration).start
15+
ForkSupervisor.new(configuration).start
1616
end
1717
end
1818

lib/solid_queue/supervisor/forks.rb renamed to lib/solid_queue/supervisor/fork_supervisor.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
module SolidQueue
4-
class Supervisor::Forks < Supervisor
4+
class Supervisor::ForkSupervisor < Supervisor
55
include Signals
66

77
before_boot :setup_pidfile

0 commit comments

Comments
 (0)