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:39 +0200 |
commit | d6c916f020e291b45563d4e76a649e9364cb6f2d (patch) | |
tree | f0b185807816be7440e4ff3cfa1179c3537c8b15 /src | |
parent | 76e38b37a5f179d4c9d2865ff31b79130407530b (diff) | |
download | postgresql-d6c916f020e291b45563d4e76a649e9364cb6f2d.tar.gz postgresql-d6c916f020e291b45563d4e76a649e9364cb6f2d.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 9c2c98614aa..63043ed8d1f 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -5199,7 +5199,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); |