Skip to content

Commit 554dfd3

Browse files
author
lwoodson
committed
Refactored plugin to use strings instead of symbols in the item hash.
1 parent 4fb7173 commit 554dfd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/resque/plugins/clues/event_publisher.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def initialize(stream)
2727
EVENT_TYPES.each do |event_type|
2828
define_method(event_type) do |timestamp, queue, metadata, klass, *args|
2929
event = CLUES.event_marshaller.call(event_type, timestamp, queue, metadata, klass, args)
30-
stream.write("#{event}")
30+
stream.write(event)
3131
end
3232
end
3333
end

0 commit comments

Comments
 (0)