smartware 0.4.7 → 0.4.8
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/smartware/pub_sub_server.rb +1 -1
- data/lib/smartware/version.rb +1 -1
- metadata +1 -1
@@ -80,7 +80,7 @@ module Smartware
|
|
80
80
|
@redis.hset "smartware:reliable_events", id, JSON.dump({ key: key, args: args })
|
81
81
|
|
82
82
|
@connections.each do |connection|
|
83
|
-
connection.publish_reliable_event id, key, args
|
83
|
+
connection.publish_reliable_event id, key, *args
|
84
84
|
end
|
85
85
|
end
|
86
86
|
|
data/lib/smartware/version.rb
CHANGED