-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
More gax paging fixes #1870
More gax paging fixes #1870
Conversation
response = self._gax_api.publish(topic_path, message_pbs) | ||
event = self._gax_api.publish(topic_path, message_pbs) | ||
if not event.is_set(): | ||
import pdb; pdb.set_trace() |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
@daspecster I've fixed the lint issues with 2f347b8. The coverage gap was actually introduced in #1868: see #1871 for a fix. |
@daspecster I don't know why coveralls shows 100%. When I run /me looks: I don't think coveralls is doing branch coverage. :( |
Looks like it doesn't lemurheavy/coveralls-public#31 |
@daspecster I've rebased against |
Maybe this should be a separate issue, but perhaps we should have travis run the Made an issue for this: #1872 |
This LGTM @tseaver. Just to confirm, setting |
GAX-generated wrappers use |
Ok, let's merge! |
BTW, Travis used to run |
Work toward fixing Pubsub system tests using GAX.
Correcting incomplete fixes in #1855.
Note that
Topic.pull
is still problematic (#1869).