Skip to content

Commit 685d641

Browse files
authored
Merge pull request #190 from open-runtimes/fix-network-setup
Fix: existing network warning
2 parents 9ecae3d + 6707778 commit 685d641

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Executor/Runner/Docker.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1251,7 +1251,7 @@ private function createNetworks(array $networks): array
12511251
$this->orchestration->createNetwork($network, false);
12521252
Console::success("Created network: $network");
12531253
$createdNetworks[] = $network;
1254-
} catch (Exception $e) {
1254+
} catch (\Throwable $e) {
12551255
Console::error("Failed to create network $network: " . $e->getMessage());
12561256
}
12571257
} else {

0 commit comments

Comments
 (0)