Skip to content

Commit 3a3e159

Browse files
committed
Fix connection warning
1 parent 685d641 commit 3a3e159

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
@@ -1278,7 +1278,7 @@ private function createNetworks(array $networks): array
12781278
try {
12791279
$this->orchestration->networkConnect($containerName, $network);
12801280
Console::success("Successfully connected executor '$containerName' to network '$network'");
1281-
} catch (Exception $e) {
1281+
} catch (\Throwable $e) {
12821282
Console::error("Failed to connect executor '$containerName' to network '$network': " . $e->getMessage());
12831283
}
12841284
}

0 commit comments

Comments
 (0)