Skip to content

Commit fec2055

Browse files
test(pdo_firebird): Fix the dummy server running on localhost to IPv4 (#16115)
1 parent e82b3b2 commit fec2055

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/pdo_firebird/tests/payload_server.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
$socket = stream_socket_server("tcp://localhost:0", $errno, $errstr);
3+
$socket = stream_socket_server("tcp://127.0.0.1:0", $errno, $errstr);
44
if (!$socket) {
55
echo "Can't start server: $errstr ($errno)\n";
66
exit(1);

0 commit comments

Comments
 (0)