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.
- {orca_python-0.7.12 → orca_python-0.7.14}/PKG-INFO +1 -1
- {orca_python-0.7.12 → orca_python-0.7.14}/orca_python/main.py +5 -2
- {orca_python-0.7.12 → orca_python-0.7.14}/pyproject.toml +1 -1
- {orca_python-0.7.12 → orca_python-0.7.14}/LICENSE +0 -0
- {orca_python-0.7.12 → orca_python-0.7.14}/README.md +0 -0
- {orca_python-0.7.12 → orca_python-0.7.14}/orca/core/protobufs/python/__init__.py +0 -0
- {orca_python-0.7.12 → orca_python-0.7.14}/orca/core/protobufs/python/service_pb2.py +0 -0
- {orca_python-0.7.12 → orca_python-0.7.14}/orca/core/protobufs/python/service_pb2.pyi +0 -0
- {orca_python-0.7.12 → orca_python-0.7.14}/orca/core/protobufs/python/service_pb2_grpc.py +0 -0
- {orca_python-0.7.12 → orca_python-0.7.14}/orca/core/protobufs/python/vendor/__init__.py +0 -0
- {orca_python-0.7.12 → orca_python-0.7.14}/orca/core/protobufs/python/vendor/validate_pb2.py +0 -0
- {orca_python-0.7.12 → orca_python-0.7.14}/orca/core/protobufs/python/vendor/validate_pb2.pyi +0 -0
- {orca_python-0.7.12 → orca_python-0.7.14}/orca/core/protobufs/python/vendor/validate_pb2_grpc.py +0 -0
- {orca_python-0.7.12 → orca_python-0.7.14}/orca_python/__init__.py +0 -0
- {orca_python-0.7.12 → orca_python-0.7.14}/orca_python/envs.py +0 -0
- {orca_python-0.7.12 → orca_python-0.7.14}/orca_python/exceptions.py +0 -0
- {orca_python-0.7.12 → orca_python-0.7.14}/orca_python/py.typed +0 -0
|
@@ -369,9 +369,11 @@ class Processor(OrcaProcessorServicer): # type: ignore
|
|
|
369
369
|
super().__init__()
|
|
370
370
|
self._name = name
|
|
371
371
|
self._processorConnStr = (
|
|
372
|
-
f"
|
|
372
|
+
f"[::]:{envs.PORT}" # attach the processor to all network interfaces.
|
|
373
373
|
)
|
|
374
|
-
self._orcaProcessorConnStr =
|
|
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
|
|
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.12 → orca_python-0.7.14}/orca/core/protobufs/python/vendor/validate_pb2.pyi
RENAMED
|
File without changes
|
{orca_python-0.7.12 → orca_python-0.7.14}/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
|