You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
initdb.log and postmaster.log were moved to within the temporary instance
path by commit dcae5fa. This directory now gets removed at the end
of the run of pg_regress when there are no failures found, which makes
analysis of after-run issues difficult in some cases, and reduces the
output verbosity of the buildfarm after a run.
Fix by Michael Paquier
Backpatch to 9.5
if (WaitForSingleObject(postmaster_pid, 0) ==WAIT_OBJECT_0)
2354
2354
#endif
2355
2355
{
2356
-
fprintf(stderr, _("\n%s: postmaster failed\nExamine %s/log/postmaster.log for the reason\n"), progname, temp_instance);
2356
+
fprintf(stderr, _("\n%s: postmaster failed\nExamine %s/log/postmaster.log for the reason\n"), progname, outputdir);
2357
2357
exit(2);
2358
2358
}
2359
2359
2360
2360
pg_usleep(1000000L);
2361
2361
}
2362
2362
if (i >= 60)
2363
2363
{
2364
-
fprintf(stderr, _("\n%s: postmaster did not respond within 60
4DE6
seconds\nExamine %s/log/postmaster.log for the reason\n"), progname, temp_instance);
2364
+
fprintf(stderr, _("\n%s: postmaster did not respond within 60 seconds\nExamine %s/log/postmaster.log for the reason\n"), progname, outputdir);
2365
2365
2366
2366
/*
2367
2367
* If we get here, the postmaster is probably wedged somewhere in
0 commit comments