orca-python 0.7.7__tar.gz → 0.7.9__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: orca-python
3
- Version: 0.7.7
3
+ Version: 0.7.9
4
4
  Summary: Python SDK for the Predixus Orca product
5
5
  Author: Frederick Mannings
6
6
  Author-email: contact@predixus.com
@@ -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.OrcaCoreStub(channel)
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.OrcaCoreStub(channel)
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.OrcaCoreStub(channel)
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.OrcaCoreStub(channel)
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
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "orca-python"
3
- version = "0.7.7"
3
+ version = "0.7.9"
4
4
  description = "Python SDK for the Predixus Orca product"
5
5
  authors = [
6
6
  "Frederick Mannings <contact@predixus.com>"
File without changes
File without changes