Skip to content

Commit

Permalink
Merge pull request #1874 from tseaver/pubsub-disable_gax_by_default
Browse files Browse the repository at this point in the history
Disable pubsub-over-gax by default.
  • Loading branch information
tseaver authored Jun 20, 2016
2 parents 8c609e9 + 6415e22 commit fa5a6eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gcloud/pubsub/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
_HAVE_GAX = True


_USE_GAX = _HAVE_GAX and os.environ.get('GCLOUD_DISABLE_GAX') is None
_USE_GAX = _HAVE_GAX and (os.environ.get('GCLOUD_ENABLE_GAX') is not None)


class Client(JSONClient):
Expand Down

0 comments on commit fa5a6eb

Please sign in to comment.