orca-python 0.7.7__tar.gz → 0.7.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of orca-python might be problematic. Click here for more details.
- {orca_python-0.7.7 → orca_python-0.7.8}/PKG-INFO +1 -1
- {orca_python-0.7.7 → orca_python-0.7.8}/orca_python/main.py +4 -4
- {orca_python-0.7.7 → orca_python-0.7.8}/pyproject.toml +1 -1
- {orca_python-0.7.7 → orca_python-0.7.8}/LICENSE +0 -0
- {orca_python-0.7.7 → orca_python-0.7.8}/README.md +0 -0
- {orca_python-0.7.7 → orca_python-0.7.8}/orca/core/protobufs/python/__init__.py +0 -0
- {orca_python-0.7.7 → orca_python-0.7.8}/orca/core/protobufs/python/service_pb2.py +0 -0
- {orca_python-0.7.7 → orca_python-0.7.8}/orca/core/protobufs/python/service_pb2.pyi +0 -0
- {orca_python-0.7.7 → orca_python-0.7.8}/orca/core/protobufs/python/service_pb2_grpc.py +0 -0
- {orca_python-0.7.7 → orca_python-0.7.8}/orca/core/protobufs/python/vendor/__init__.py +0 -0
- {orca_python-0.7.7 → orca_python-0.7.8}/orca/core/protobufs/python/vendor/validate_pb2.py +0 -0
- {orca_python-0.7.7 → orca_python-0.7.8}/orca/core/protobufs/python/vendor/validate_pb2.pyi +0 -0
- {orca_python-0.7.7 → orca_python-0.7.8}/orca/core/protobufs/python/vendor/validate_pb2_grpc.py +0 -0
- {orca_python-0.7.7 → orca_python-0.7.8}/orca_python/__init__.py +0 -0
- {orca_python-0.7.7 → orca_python-0.7.8}/orca_python/envs.py +0 -0
- {orca_python-0.7.7 → orca_python-0.7.8}/orca_python/exceptions.py +0 -0
- {orca_python-0.7.7 → orca_python-0.7.8}/orca_python/py.typed +0 -0
|
@@ -214,13 +214,13 @@ def EmitWindow(window: Window) -> None:
|
|
|
214
214
|
with grpc.secure_channel(
|
|
215
215
|
envs.ORCASERVER, grpc.ssl_channel_credentials()
|
|
216
216
|
) as channel:
|
|
217
|
-
stub = service_pb2_grpc.
|
|
217
|
+
stub = service_pb2_grpc.OrcaCore(channel)
|
|
218
218
|
response = stub.EmitWindow(window_pb)
|
|
219
219
|
LOGGER.info(f"Window emitted: {response}")
|
|
220
220
|
else:
|
|
221
221
|
# insecure channel for local development
|
|
222
222
|
with grpc.insecure_channel(envs.ORCASERVER) as channel:
|
|
223
|
-
stub = service_pb2_grpc.
|
|
223
|
+
stub = service_pb2_grpc.OrcaCore(channel)
|
|
224
224
|
response = stub.EmitWindow(window_pb)
|
|
225
225
|
LOGGER.info(f"Window emitted: {response}")
|
|
226
226
|
|
|
@@ -656,13 +656,13 @@ class Processor(OrcaProcessorServicer): # type: ignore
|
|
|
656
656
|
with grpc.secure_channel(
|
|
657
657
|
envs.ORCASERVER, grpc.ssl_channel_credentials()
|
|
658
658
|
) as channel:
|
|
659
|
-
stub = service_pb2_grpc.
|
|
659
|
+
stub = service_pb2_grpc.OrcaCore(channel)
|
|
660
660
|
response = stub.RegisterProcessor(registration_request)
|
|
661
661
|
LOGGER.info(f"Algorithm registration response received: {response}")
|
|
662
662
|
else:
|
|
663
663
|
# insecure channel for local development
|
|
664
664
|
with grpc.insecure_channel(envs.ORCASERVER) as channel:
|
|
665
|
-
stub = service_pb2_grpc.
|
|
665
|
+
stub = service_pb2_grpc.OrcaCore(channel)
|
|
666
666
|
response = stub.RegisterProcessor(registration_request)
|
|
667
667
|
LOGGER.info(f"Algorithm registration response received: {response}")
|
|
668
668
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{orca_python-0.7.7 → orca_python-0.7.8}/orca/core/protobufs/python/vendor/validate_pb2_grpc.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|