ok( pump_until(
$killme,
\$killme_stderr,
- qr/WARNING: terminating connection because of crash of another server process|server closed the connection unexpectedly/m
+ qr/WARNING: terminating connection because of crash of another server process|server closed the connection unexpectedly|connection to server was lost/m
),
"psql query died successfully after SIGQUIT");
$killme_stderr = '';
ok( pump_until(
$monitor,
\$monitor_stderr,
- qr/WARNING: terminating connection because of crash of another server process|server closed the connection unexpectedly/m
+ qr/WARNING: terminating connection because of crash of another server process|server closed the connection unexpectedly|connection to server was lost/m
),
"psql monitor died successfully after SIGQUIT");
$monitor->finish;
];
ok( pump_until(
$killme, \$killme_stderr,
- qr/server closed the connection unexpectedly/m),
+ qr/server closed the connection unexpectedly|connection to server was lost/m),
"psql query died successfully after SIGKILL");
$killme->finish;
ok( pump_until(
$monitor,
\$monitor_stderr,
- qr/WARNING: terminating connection because of crash of another server process|server closed the connection unexpectedly/m
+ qr/WARNING: terminating connection because of crash of another server process|server closed the connection unexpectedly|connection to server was lost/m
),
"psql monitor died successfully after SIGKILL");
$monitor->finish;