Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Auto-update dependencies. #1389

Merged
merged 2 commits into from
Mar 8, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion appengine/flexible/pubsub/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Flask==0.12.2
google-cloud-pubsub==0.32.0
google-cloud-pubsub==0.32.1
gunicorn==19.7.1
2 changes: 1 addition & 1 deletion iot/api-client/end_to_end_example/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ cryptography==2.1.4
google-api-python-client==1.6.5
google-auth-httplib2==0.0.3
google-auth==1.4.1
google-cloud-pubsub==0.32.0
google-cloud-pubsub==0.32.1
pyjwt==1.6.0
paho-mqtt==1.3.1
2 changes: 1 addition & 1 deletion iot/api-client/gcs_file_to_device/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
google-api-python-client==1.6.5
google-auth==1.4.1
google-auth-httplib2==0.0.3
google-cloud-pubsub==0.32.0
google-cloud-pubsub==0.32.1
google-cloud-storage==1.8.0
cryptography==2.1.4
paho-mqtt==1.3.1
Expand Down
2 changes: 1 addition & 1 deletion iot/api-client/http_example/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ cryptography==2.1.4
google-api-python-client==1.6.5
google-auth-httplib2==0.0.3
google-auth==1.4.1
google-cloud-pubsub==0.32.0
google-cloud-pubsub==0.32.1
pyjwt==1.6.0
requests==2.18.4
2 changes: 1 addition & 1 deletion iot/api-client/mqtt_example/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
google-api-python-client==1.6.5
google-auth-httplib2==0.0.3
google-auth==1.4.1
google-cloud-pubsub==0.32.0
google-cloud-pubsub==0.32.1
cryptography==2.1.4
pyjwt==1.6.0
paho-mqtt==1.3.1
2 changes: 1 addition & 1 deletion iot/api-client/scripts/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
google-cloud-pubsub==0.32.0
google-cloud-pubsub==0.32.1
2 changes: 1 addition & 1 deletion pubsub/cloud-client/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
google-cloud-pubsub==0.32.0
google-cloud-pubsub==0.32.1
6 changes: 3 additions & 3 deletions pubsub/cloud-client/subscriber.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@

def list_subscriptions_in_topic(project, topic_name):
"""Lists all subscriptions for a given topic."""
subscriber = pubsub_v1.SubscriberClient()
subscriber = pubsub_v1.PublisherClient()
topic_path = subscriber.topic_path(project, topic_name)

for subscription in subscriber.list_subscriptions(topic_path):
print(subscription.name)
for subscription in subscriber.list_topic_subscriptions(topic_path):
print(subscription)


def list_subscriptions_in_project(project):
Expand Down
2 changes: 1 addition & 1 deletion storage/cloud-client/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
google-cloud-storage==1.8.0
google-cloud-pubsub==0.32.0
google-cloud-pubsub==0.32.1