Commit e90c4fc8 authored by Andrew Dunstan's avatar Andrew Dunstan

Fix new recovery test for log_error_verbosity=verbose case

The new test is from commit 9e4f914b5e.

With this setting messages have SQL error numbers included, so that
needs to be provided for in the pattern looked for.

Backpatch to all live branches like the original.
parent 8df167ba
...@@ -133,7 +133,7 @@ while ($max_attempts-- >= 0) ...@@ -133,7 +133,7 @@ while ($max_attempts-- >= 0)
last last
if ( if (
find_in_log( find_in_log(
$node_standby, "WARNING: creating missing directory: pg_tblspc/", $node_standby, qr!WARNING: ( [A-Z0-9]+:)? creating missing directory: pg_tblspc/!,
$logstart)); $logstart));
sleep 1; sleep 1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment