Commit 97e3dacd authored by Heikki Linnakangas's avatar Heikki Linnakangas

Begin error message with lower-case letter.

parent baabf051
...@@ -737,7 +737,7 @@ PostmasterMain(int argc, char *argv[]) ...@@ -737,7 +737,7 @@ PostmasterMain(int argc, char *argv[])
(errmsg("WAL streaming (max_wal_senders > 0) requires wal_level \"archive\" or \"hot_standby\""))); (errmsg("WAL streaming (max_wal_senders > 0) requires wal_level \"archive\" or \"hot_standby\"")));
if (strlen(SyncRepStandbyNames) > 0 && max_wal_senders == 0) if (strlen(SyncRepStandbyNames) > 0 && max_wal_senders == 0)
ereport(ERROR, ereport(ERROR,
(errmsg("Synchronous replication requires WAL streaming (max_wal_senders > 0)"))); (errmsg("synchronous replication requires WAL streaming (max_wal_senders > 0)")));
/* /*
* Other one-time internal sanity checks can go here, if they are fast. * Other one-time internal sanity checks can go here, if they are fast.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment