From 72f74dd7a7004f31fd63b988b78bd400d6f45120 Mon Sep 17 00:00:00 2001 From: Jaime Casanova Date: Thu, 3 Nov 2011 12:54:55 -0500 Subject: [PATCH] Fix a typo introduced in commit 94c9c3a5c63891dea7fc01558f3ecd9d9d25bc6c --- repmgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repmgr.c b/repmgr.c index ff445257..e7a136da 100644 --- a/repmgr.c +++ b/repmgr.c @@ -906,7 +906,7 @@ do_standby_clone(void) * in pg 9.1 default is to wait for a sync standby to ack, * avoid that by turning off sync rep for this session */ - sqlquery_snprintf(sqlquery, "SET synchronous_commit TO OFF)"); + sqlquery_snprintf(sqlquery, "SET synchronous_commit TO OFF"); res = PQexec(conn, sqlquery); if (PQresultStatus(res) != PGRES_COMMAND_OK) {