Skip to content

Commit

Permalink
Adding stray comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
dhermes committed Nov 23, 2015
1 parent ba61b11 commit ed10f18
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions gcloud_bigtable/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,6 +499,11 @@ def start(self):
if self.is_started():
return

# NOTE: We __enter__ the stubs more-or-less permanently. This is
# because only after entering the context managers is the
# connection created. We don't want to immediately close
# those connections since the client will make many
# requests with it over HTTP/2.
self._data_stub_internal = self._make_data_stub()
self._data_stub_internal.__enter__()
if self._admin:
Expand Down

0 comments on commit ed10f18

Please sign in to comment.