File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3227,7 +3227,7 @@ ANY <replaceable class="parameter">num_sync</replaceable> ( <replaceable class="
3227
3227
<para>
3228
3228
Specifies whether or not you can connect and run queries during
3229
3229
recovery, as described in <xref linkend="hot-standby">.
3230
- The default value is <literal>off </literal>.
3230
+ The default value is <literal>on </literal>.
3231
3231
This parameter can only be set at server start. It only has effect
3232
3232
during archive recovery or in standby mode.
3233
3233
</para>
Original file line number Diff line number Diff line change @@ -2057,8 +2057,8 @@ if (!triggered)
2057
2057
<title>Administrator's Overview</title>
2058
2058
2059
2059
<para>
2060
- If <varname>hot_standby</> is turned <literal>on</> in
2061
- <filename>postgresql.conf</> and there is a <filename>recovery.conf</>
2060
+ If <varname>hot_standby</> is <literal>on</> in <filename>postgresql.conf</>
2061
+ (the default value) and there is a <filename>recovery.conf</>
2062
2062
file present, the server will run in Hot Standby mode.
2063
2063
However, it may take some time for Hot Standby connections to be allowed,
2064
2064
because the server will not accept connections until it has completed
Original file line number Diff line number Diff line change @@ -1571,7 +1571,7 @@ static struct config_bool ConfigureNamesBool[] =
1571
1571
NULL
1572
1572
},
1573
1573
& EnableHotStandby ,
1574
- false ,
1574
+ true ,
1575
1575
NULL , NULL , NULL
1576
1576
},
1577
1577
Original file line number Diff line number Diff line change 254
254
255
255
# These settings are ignored on a master server.
256
256
257
- #hot_standby = off # "on" allows queries during recovery
257
+ #hot_standby = on # "off" disallows queries during recovery
258
258
# (change requires restart)
259
259
#max_standby_archive_delay = 30s # max delay before canceling queries
260
260
# when reading WAL from archive;
You can’t perform that action at this time.
0 commit comments