diff options
author | Magnus Hagander <magnus@hagander.net> | 2021-09-07 21:59:25 +0200 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2021-09-07 22:04:45 +0200 |
commit | b7fd291042a846b04439f122cb81a41d3cd2e8de (patch) | |
tree | bd978f8610c1d050724fe68420e69b8a53eb2d47 /src | |
parent | 8b895374cd9cf6989bcee5b6f70f65f2d3520224 (diff) | |
download | postgresql-b7fd291042a846b04439f122cb81a41d3cd2e8de.tar.gz postgresql-b7fd291042a846b04439f122cb81a41d3cd2e8de.zip |
Consistently use read-only instead of "read only"
This affects one message and some documentation that used the format
"read only", unlike everything else that used read-only.
Backpatch-through: 14
Discussion: https://postgr.es/m/CABUevExuxKwn0YM3+wdSeQSvK6CRrJ-hewocGVX3R4-xVX4eMw@mail.gmail.com
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/postmaster/postmaster.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 122c2b05bdb..68f4b238246 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -5204,7 +5204,7 @@ sigusr1_handler(SIGNAL_ARGS) PgStatPID = pgstat_start(); ereport(LOG, - (errmsg("database system is ready to accept read only connections"))); + (errmsg("database system is ready to accept read-only connections"))); /* Report status */ AddToDataDirLockFile(LOCK_FILE_LINE_PM_STATUS, PM_STATUS_READY); |