mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-26 16:46:28 +00:00
repmgr: set "synchronous_commit" to "local" by default
Rather than set this for individual connections, we'll change the setting each time a connection is made (except replication connections), which will obviate the need to take this into consideration when making connections in the application code. Resolves GitHub #276.
This commit is contained in:
18
repmgr.c
18
repmgr.c
@@ -3022,18 +3022,6 @@ do_standby_clone(void)
|
||||
strncpy(recovery_conninfo_str, upstream_node_record.conninfo_str, MAXLEN);
|
||||
}
|
||||
}
|
||||
|
||||
/* Finally, set `synchronous_commit` to `local` to avoid problems
|
||||
* if synchronous commit is in use.
|
||||
*/
|
||||
|
||||
if (primary_conn != NULL && PQstatus(primary_conn) == CONNECTION_OK)
|
||||
{
|
||||
if (set_config(primary_conn, "synchronous_commit", "local") == false)
|
||||
{
|
||||
exit(ERR_DB_QUERY);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (mode == barman && PQstatus(source_conn) != CONNECTION_OK)
|
||||
@@ -4857,8 +4845,6 @@ do_standby_follow(void)
|
||||
*
|
||||
* TODO:
|
||||
* - make connection test timeouts/intervals configurable (see below)
|
||||
* - add command line option --remote_pg_bindir or similar to
|
||||
* optionally handle cases where the remote pg_bindir is different
|
||||
*/
|
||||
|
||||
static void
|
||||
@@ -5592,6 +5578,8 @@ do_standby_switchover(void)
|
||||
|
||||
/* Check for entry in the new master's pg_stat_replication */
|
||||
|
||||
local_conn = establish_db_connection(options.conninfo, true);
|
||||
|
||||
{
|
||||
int i,
|
||||
replication_check_timeout = 60,
|
||||
@@ -5601,8 +5589,6 @@ do_standby_switchover(void)
|
||||
|
||||
initPQExpBuffer(&event_details);
|
||||
|
||||
local_conn = establish_db_connection(options.conninfo, true);
|
||||
|
||||
i = 0;
|
||||
for (;;)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user