Skip to content
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

fix: Generate Python Code from plugin-pb #90

Merged
merged 1 commit into from
Jun 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cloudquery/discovery_v1/discovery_pb2_grpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from cloudquery.discovery_v1 import discovery_pb2 as cloudquery_dot_discovery__v1_dot_discovery__pb2

GRPC_GENERATED_VERSION = '1.63.0'
GRPC_GENERATED_VERSION = '1.64.0'
GRPC_VERSION = grpc.__version__
EXPECTED_ERROR_RELEASE = '1.65.0'
SCHEDULED_RELEASE_DATE = 'June 25, 2024'
Expand Down Expand Up @@ -68,6 +68,7 @@ def add_DiscoveryServicer_to_server(servicer, server):
generic_handler = grpc.method_handlers_generic_handler(
'cloudquery.discovery.v1.Discovery', rpc_method_handlers)
server.add_generic_rpc_handlers((generic_handler,))
server.add_registered_method_handlers('cloudquery.discovery.v1.Discovery', rpc_method_handlers)


# This class is part of an EXPERIMENTAL API.
Expand Down
3 changes: 2 additions & 1 deletion cloudquery/plugin_v3/plugin_pb2_grpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from cloudquery.plugin_v3 import plugin_pb2 as cloudquery_dot_plugin__v3_dot_plugin__pb2

GRPC_GENERATED_VERSION = '1.63.0'
GRPC_GENERATED_VERSION = '1.64.0'
GRPC_VERSION = grpc.__version__
EXPECTED_ERROR_RELEASE = '1.65.0'
SCHEDULED_RELEASE_DATE = 'June 25, 2024'
Expand Down Expand Up @@ -224,6 +224,7 @@ def add_PluginServicer_to_server(servicer, server):
generic_handler = grpc.method_handlers_generic_handler(
'cloudquery.plugin.v3.Plugin', rpc_method_handlers)
server.add_generic_rpc_handlers((generic_handler,))
server.add_registered_method_handlers('cloudquery.plugin.v3.Plugin', rpc_method_handlers)


# This class is part of an EXPERIMENTAL API.
Expand Down