diff options
author | Michael Paquier <michael@paquier.xyz> | 2022-09-22 14:25:09 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2022-09-22 14:25:09 +0900 |
commit | fbb5f54b67c2f35c885d07daa26bce7e2eb6b0be (patch) | |
tree | cfeb75398713f5dec899a42179c95737111dfadc /src/backend/access/transam/xlog.c | |
parent | 2f636daac85b7bad608b24b475feceb7e3076ec6 (diff) | |
download | postgresql-fbb5f54b67c2f35c885d07daa26bce7e2eb6b0be.tar.gz postgresql-fbb5f54b67c2f35c885d07daa26bce7e2eb6b0be.zip |
Clear ps display of startup process at the end of recovery
If the ps display is not cleared at this point, the process could
continue displaying "recovering NNN" even if handling end-of-recovery
steps. df9274a has tackled that by providing some information with the
end-of-recovery checkpoint but 7ff23c6 has nullified the effect of the
first commit.
Per a suggestion from Justin, just clear the ps display when we are done
with recovery, so as no incorrect information is displayed. This may
get extended in the future, but for now restore the pre-7ff23c6
behavior.
Author: Justin Prysby
Discussion: https://postgr.es/m/20220913223954.GU31833@telsasoft.com
Backpatch-through: 15
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index e0281246722..f32b2124e64 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -5478,6 +5478,12 @@ StartupXLOG(void) missingContrecPtr = endOfRecoveryInfo->missingContrecPtr; /* + * Reset ps status display, so as no information related to recovery + * shows up. + */ + set_ps_display(""); + + /* * When recovering from a backup (we are in recovery, and archive recovery * was requested), complain if we did not roll forward far enough to reach * the point where the database is consistent. For regular online |