-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: executor to manage its own networks #97
Conversation
app/http.php
Outdated
try { | ||
$orchestration->remove($container->getId(), true); | ||
|
||
$activeRuntimeId = $container->getName(); | ||
|
||
if (!$activeRuntimes->exists($activeRuntimeId)) { | ||
if ($activeRuntimes->exists($activeRuntimeId)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Previously it was !$activeRuntimes->exists
. Was that a bug?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think its a bug.. because if the activeRuntimeId does not exist in the swoole table, how can we delete it?
But Ive reverted it since I want to validate with matej
composer.json
Outdated
@@ -35,7 +35,7 @@ | |||
"utopia-php/registry": "0.5.*", | |||
"utopia-php/preloader": "0.2.*", | |||
"utopia-php/system": "0.8.*", | |||
"utopia-php/orchestration": "0.13.*", | |||
"utopia-php/orchestration": "dev-add-network-exists", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You'd update this, right?
feat: adjusting table size
feat: getting executor name
feat: executor to manage its own networks
…se-bridge-networks
No description provided.