Skip to content
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
13 changes: 9 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v0.7.14] - 15-09-2025

## [v0.7.12] - 15-09-2025

### Added
Expand Down Expand Up @@ -124,10 +126,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

[unreleased]: https://github.com/Predixus/Orca/compare/v0.7.11...HEAD
[v0.7.8]: https://github.com/Predixus/Orca/compare/v0.7.10...v0.7.11
[v0.7.8]: https://github.com/Predixus/Orca/compare/v0.7.9...v0.7.10
[v0.7.8]: https://github.com/Predixus/Orca/compare/v0.7.8...v0.7.9
[unreleased]: https://github.com/Predixus/Orca/compare/v0.7.14...HEAD
[v0.7.14]: https://github.com/Predixus/Orca/compare/v0.7.13...v0.7.14
[v0.7.13]: https://github.com/Predixus/Orca/compare/v0.7.12...v0.7.13
[v0.7.12]: https://github.com/Predixus/Orca/compare/v0.7.11...v0.7.12
[v0.7.11]: https://github.com/Predixus/Orca/compare/v0.7.10...v0.7.11
[v0.7.10]: https://github.com/Predixus/Orca/compare/v0.7.9...v0.7.10
[v0.7.9]: https://github.com/Predixus/Orca/compare/v0.7.8...v0.7.9
[v0.7.8]: https://github.com/Predixus/Orca/compare/v0.7.7...v0.7.8
[v0.7.7]: https://github.com/Predixus/Orca/compare/v0.7.6...v0.7.7
[v0.7.6]: https://github.com/Predixus/Orca/compare/v0.7.5...v0.7.6
Expand Down
7 changes: 5 additions & 2 deletions orca_python/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,9 +369,11 @@ def __init__(self, name: str, max_workers: int = 10):
super().__init__()
self._name = name
self._processorConnStr = (
f"0.0.0.0:{envs.PORT}" # attach the processor to all network interfaces.
f"[::]:{envs.PORT}" # attach the processor to all network interfaces.
)
self._orcaProcessorConnStr = f"{envs.HOST}:{envs.PORT}" # tell orca-core to reference this processor by this address.
self._orcaProcessorConnStr = (
envs.HOST
) # tell orca-core to reference this processor by this address.
self._runtime = sys.version
self._max_workers = max_workers
self._algorithmsSingleton: Algorithms = Algorithms()
Expand Down Expand Up @@ -709,6 +711,7 @@ def Start(self) -> None:

# start the server
server.start()

LOGGER.info("Server started successfully")

# setup graceful shutdown
Expand Down
20 changes: 10 additions & 10 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "orca-python"
version = "0.7.12"
version = "0.7.14"
description = "Python SDK for the Predixus Orca product"
authors = [
"Frederick Mannings <contact@predixus.com>"
Expand Down