Skip to content
This repository was archived by the owner on Dec 9, 2023. It is now read-only.

Commit a7fc347

Browse files
committed
Merge branch '3.4' into 4.4
* 3.4: Tweak the code to avoid fabbot false positives
2 parents 41cefc8 + ffc4538 commit a7fc347

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Command/ServerLogCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
106106
}
107107

108108
if (!$socket = stream_socket_server($host, $errno, $errstr)) {
109-
throw new RuntimeException(sprintf('Server start failed on "%s": %s %s.', $host, $errstr, $errno));
109+
throw new RuntimeException(sprintf('Server start failed on "%s": '.$errstr.' '.$errno, $host));
110110
}
111111

112112
foreach ($this->getLogs($socket) as $clientId => $message) {

0 commit comments

Comments
 (0)