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
Running pgespresso_abort_backup() while a pg_basebackup based backup is running causes major breakage by throwing an assertion in the backend and restarting the whole cluster:
Console output:
pg_basebackup: could not read COPY data
Log output:
TRAP: FailedAssertion("!(XLogCtl->Insert.nonExclusiveBackups > 0)", File: "xlog.c", Line: 9795)
2014-05-28 13:10:11.775 CEST LOG: server process (PID 18684) was terminated by signal 6: Aborted
2014-05-28 13:10:11.775 CEST LOG: terminating any other active server processes
The text was updated successfully, but these errors were encountered:
This affects all supported PostgreSQL versions. Assert is obviously only thrown if it's an assert enabled build, but that just means that the breakage is silent on other builds.
Running
pgespresso_abort_backup()
while apg_basebackup
based backup is running causes major breakage by throwing an assertion in the backend and restarting the whole cluster:Console output:
Log output:
The text was updated successfully, but these errors were encountered: