Skip to content

Commit cdd87ef

Browse files
committed
Fix procline for new Supervisor subclasses
`solid-queue-fork-supervisor` vs. `solid-queue-forksupervisor`.
1 parent b119337 commit cdd87ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/solid_queue/processes/procline.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module Procline
55
# Sets the procline ($0)
66
# solid-queue-supervisor(0.1.0): <string>
77
def procline(string)
8-
$0 = "solid-queue-#{self.class.name.demodulize.downcase}(#{SolidQueue::VERSION}): #{string}"
8+
$0 = "solid-queue-#{self.class.name.demodulize.underscore.dasherize}(#{SolidQueue::VERSION}): #{string}"
99
end
1010
end
1111
end

0 commit comments

Comments
 (0)