Skip to content

Commit

Permalink
Fixed return object from subscriber.subscribe() (#1685)
Browse files Browse the repository at this point in the history
  • Loading branch information
anguillanneuf authored Sep 7, 2018
1 parent 35fe662 commit 7b0cf88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pubsub/cloud-client/subscriber.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,13 +255,13 @@ def callback(message):
print('Received message: {}'.format(message))
message.ack()

subscription = subscriber.subscribe(subscription_path, callback=callback)
future = subscriber.subscribe(subscription_path, callback=callback)

# Blocks the thread while messages are coming in through the stream. Any
# exceptions that crop up on the thread will be set on the future.
try:
# When timeout is unspecified, the result method waits indefinitely.
subscription.future.result(timeout=30)
future.result(timeout=30)
except Exception as e:
print(
'Listening for messages on {} threw an Exception: {}.'.format(
Expand Down

0 comments on commit 7b0cf88

Please sign in to comment.