Skip to content

Commit

Permalink
Replace GCLOUD_PROJECT with GOOGLE_CLOUD_PROJECT. [(#4022)](GoogleClo…
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtisvg authored Jun 9, 2020
1 parent 89debfc commit 0e325bf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion samples/snippets/iam_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import iam

UUID = uuid.uuid4().hex
PROJECT = os.environ["GCLOUD_PROJECT"]
PROJECT = os.environ["GOOGLE_CLOUD_PROJECT"]
TOPIC = "iam-test-topic-" + UUID
SUBSCRIPTION = "iam-test-subscription-" + UUID

Expand Down
2 changes: 1 addition & 1 deletion samples/snippets/publisher_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import publisher

UUID = uuid.uuid4().hex
PROJECT = os.environ["GCLOUD_PROJECT"]
PROJECT = os.environ["GOOGLE_CLOUD_PROJECT"]
TOPIC_ADMIN = "publisher-test-topic-admin-" + UUID
TOPIC_PUBLISH = "publisher-test-topic-publish-" + UUID

Expand Down
2 changes: 1 addition & 1 deletion samples/snippets/quickstart/pub_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@


UUID = uuid.uuid4().hex
PROJECT = os.environ["GCLOUD_PROJECT"]
PROJECT = os.environ["GOOGLE_CLOUD_PROJECT"]
TOPIC = "quickstart-pub-test-topic-" + UUID


Expand Down
2 changes: 1 addition & 1 deletion samples/snippets/quickstart/sub_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@


UUID = uuid.uuid4().hex
PROJECT = os.environ["GCLOUD_PROJECT"]
PROJECT = os.environ["GOOGLE_CLOUD_PROJECT"]
TOPIC = "quickstart-sub-test-topic-" + UUID
SUBSCRIPTION = "quickstart-sub-test-topic-sub-" + UUID

Expand Down
2 changes: 1 addition & 1 deletion samples/snippets/subscriber_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import subscriber

UUID = uuid.uuid4().hex
PROJECT = os.environ["GCLOUD_PROJECT"]
PROJECT = os.environ["GOOGLE_CLOUD_PROJECT"]
TOPIC = "subscription-test-topic-" + UUID
DEAD_LETTER_TOPIC = "subscription-test-dead-letter-topic-" + UUID
SUBSCRIPTION_ADMIN = "subscription-test-subscription-admin-" + UUID
Expand Down

0 comments on commit 0e325bf

Please sign in to comment.