| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
|
This LGTM with small nits. |
Sorry, something went wrong.
This is in advance of putting them side-by-side with datastore.
Also - Removing `v1beta2` generated code and `.proto` file - Adding new `.proto` files and generated code - Adding `make_datastore_grpc.py` script to tear out the `protoc` inserted lines by the gRPC plugin - Updating `rewrite_imports.py` to rewrite the datastore imports
Also using subprocess.call instead of check_output in the scripts that split up gRPC from non-gRPC parts of generated modules. This is because check_output swallows standard error and throws a less useful exception.
|
LGTM. |
Sorry, something went wrong.
Upgrading Makefile to generate datastore v1beta3.
* fix: Fix remaining REST transport issues This includes: 1) Use message-based transcoding logic instead of dictionary-based. This fixes multiple bugs caused by dict-json-object representation mismatches fro protobuf objects. This also removes a lot of `json->dict->object->proto-plus` object conversion overhead, which was slow and very error-prone. Now all transcodding and rest-transport-specific logic is executed in terms of native protobuf (`_pb`) stubs objects. No dicts, no proto-plus, no unnecessary conversions. 2) Fix for non-proto-plus objects in rest.py transport and in tests. This essential for APIs which have IAM methods defined on their surface. 3) Fix support for Any field in tests 4) Fix creation of mock_values (do `mock_value1` instead of `mock_value_1`, since `mock_value_1` causes issues for FieldMask mocks * update setup template to depend on latest api-core Co-authored-by: Anthonios Partheniou <partheniou@google.com>
…1428) * fix: fixes issue where Python37DeprecationWarning cannot be filtered * chore: refresh sys test cred --------- Co-authored-by: arithmetic1728 <58957152+arithmetic1728@users.noreply.github.com> Co-authored-by: Sijun Liu <liusijun1985@gmail.com>
| Back | FazBrowse Home | New Git URL |
Also
Was #1355 but has been re-purposed to merge against the datastore-v1beta3 branch