Uh oh!
There was an error while loading. Please reload this page.
Allow specifying read consistency - #4343
Conversation
a79426d to
b1258feComparechemelnucfin
commented
Nov 6, 2017
via email
Ok. …On Mon, Nov 6, 2017, 6:21 AM Luke Sneeringer ***@***.***> wrote:
***@***.**** approved this pull request.
This looks sane to me. Please get *either* @tseaver
<https://github.com/tseaver> or @dhermes <https://github.com/dhermes> to
also say yes before merging.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#4343 (review)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ADzDDExUi_PSKcCKImv96T9FRvw-5GIDks5szxX0gaJpZM4QRyrZ>
.
|
@chemelnucfin Please put the "Closes #4340" in the description, not the title. E.g., for a single-commit PR: $ git commit datastore/ -m "Specify read consistency.Closes #4340." |
tseaver
commented
Nov 6, 2017
Also, please add labels when you create the PR. |
tseaver
left a comment
There was a problem hiding this comment.
The tests for get_read_options need to move from test_client.py to test_helpers.py.
| _determine_default_project as _base_default_project) | ||
| from google.cloud._helpers import (_determine_default_project as | ||
| _default_project) | ||
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
| from google.cloud.datastore.key import Key | ||
| from google.cloud.datastore.query import Query | ||
| from google.cloud.datastore.transaction import Transaction | ||
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
| if project is None: | ||
| project = _base_default_project(project=project) | ||
| project = _default_project(project=project) |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
| :type eventual: bool | ||
| :param eventual: (Optional) Defaults to strongly consistent (False). | ||
| Setting True will use eventual consistency, |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
| datastore_api=self._datastore_api, | ||
| project=self.project, | ||
| key_pbs=[k.to_protobuf() for k in keys], | ||
| key_pbs=[key.to_protobuf() for key in keys], |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
| from google.cloud.datastore.entity import Entity | ||
| from google.cloud.datastore.key import Key | ||
| from google.cloud.proto.datastore.v1 import entity_pb2 as _entity_pb2 | ||
| from google.cloud.proto.datastore.v1 import datastore_pb2 as _datastore_pb2 |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
googlebot
commented
Nov 6, 2017
So there's good news and bad news. 👍 The good news is that everyone that needs to sign a CLA (the pull request submitter and all commit authors) have done so. Everything is all good there. 😕 The bad news is that it appears that one or more commits were authored by someone other than the pull request submitter. We need to confirm that all authors are ok with their commits being contributed to this project. Please have them confirm that here in the pull request. Note to project maintainer: This is a terminal state, meaning the |
tseaver
commented
Nov 6, 2017
@chemelnucfin Rather than merging master into your branch (which is what confused the @goolebot) we prefer to rebase the branch against master, which keeps the PR focused on just the relevant changes. |
0d45147 to
9605172Comparechemelnucfin
commented
Nov 6, 2017
Sorry about that. I think I rebased on the wrong branch. I think that's better now. |
chemelnucfin
commented
Nov 8, 2017
664e5cc to
d09d907Compare| from google.cloud._helpers import ( | ||
| _determine_default_project as _base_default_project) | ||
| from google.cloud._helpers import (_determine_default_project as | ||
| _base_default_project) |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
| from google.cloud.datastore.key import Key | ||
| from google.protobuf import struct_pb2 | ||
| from google.type import latlng_pb2 |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
* Closes#4340 - Specify Read Consistency * review changes * merge conflicts; correct imports
Closes#4340