eventus 0.3.8 → 0.3.9
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/eventus/persistence/mongo.rb +1 -1
- data/lib/eventus/version.rb +1 -1
- metadata +1 -1
@@ -59,7 +59,7 @@ module Eventus
|
|
59
59
|
|
60
60
|
def mark_commit_dispatched(commit_id)
|
61
61
|
Eventus.logger.debug "Marking commit #{commit_id} dispatched"
|
62
|
-
@commits.update({_id: commit_id}, {dispatched
|
62
|
+
@commits.update({_id: commit_id}, {'$set' => {'dispatched' => true}})
|
63
63
|
end
|
64
64
|
|
65
65
|
private
|
data/lib/eventus/version.rb
CHANGED