Skip to content

Commit

Permalink
Merge pull request #34 from iron-io/bugfix-pq-subs-404
Browse files Browse the repository at this point in the history
Bugfix pq subs 404
  • Loading branch information
akolesen committed Jan 3, 2013
2 parents 7c671db + be6c97b commit 103495d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/test_push_queues.rb
Expand Up @@ -106,7 +106,11 @@ def test_queue_subscriptions
tries = MAX_TRIES
while tries > 0
tries -= 1
subscribers = queue.messages.get(m.id).subscribers
msg = queue.messages.get(m.id)
LOG.info "checking for message: #{msg}"
next if msg.nil?
subscribers = msg.subscribers

LOG.debug subscribers
if t == "unicast"
assert_equal 1, found
Expand Down

0 comments on commit 103495d

Please sign in to comment.