Skip to content

Commit

Permalink
Merge branch 'PHP-8.1' into PHP-8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bukka committed Nov 24, 2024
2 parents 0608267 + eb951b3 commit 173175b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ext/mysqli/tests/fake_server.inc
Original file line number Diff line number Diff line change
Expand Up @@ -552,8 +552,8 @@ class my_mysqli_fake_server_conn

public function read($bytes_len = 1024)
{
// wait 10ms to fill the buffer
usleep(10000);
// wait 20ms to fill the buffer
usleep(20000);
$data = fread($this->conn, $bytes_len);
if ($data) {
fprintf(STDERR, "[*] Received: %s\n", bin2hex($data));
Expand Down

0 comments on commit 173175b

Please sign in to comment.