orca-python 0.7.12__tar.gz → 0.7.14__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.12
3
+ Version: 0.7.14
4
4
  Summary: Python SDK for the Predixus Orca product
5
5
  Author: Frederick Mannings
6
6
  Author-email: contact@predixus.com
@@ -369,9 +369,11 @@ class Processor(OrcaProcessorServicer): # type: ignore
369
369
  super().__init__()
370
370
  self._name = name
371
371
  self._processorConnStr = (
372
- f"0.0.0.0:{envs.PORT}" # attach the processor to all network interfaces.
372
+ f"[::]:{envs.PORT}" # attach the processor to all network interfaces.
373
373
  )
374
- self._orcaProcessorConnStr = f"{envs.HOST}:{envs.PORT}" # tell orca-core to reference this processor by this address.
374
+ self._orcaProcessorConnStr = (
375
+ envs.HOST
376
+ ) # tell orca-core to reference this processor by this address.
375
377
  self._runtime = sys.version
376
378
  self._max_workers = max_workers
377
379
  self._algorithmsSingleton: Algorithms = Algorithms()
@@ -709,6 +711,7 @@ class Processor(OrcaProcessorServicer): # type: ignore
709
711
 
710
712
  # start the server
711
713
  server.start()
714
+
712
715
  LOGGER.info("Server started successfully")
713
716
 
714
717
  # setup graceful shutdown
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "orca-python"
3
- version = "0.7.12"
3
+ version = "0.7.14"
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