From 3f99be54e7ce946d10dd8fa174ca60f00fda5b6d Mon Sep 17 00:00:00 2001 From: Markus Makela Date: Sat, 16 Apr 2016 07:45:15 +0300 Subject: [PATCH] Transaction safety is again disabled by default The transaction safety was enabled due to a merge. The feature should be disabled for the 1.4 releases. --- server/modules/routing/binlog/blr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/modules/routing/binlog/blr.c b/server/modules/routing/binlog/blr.c index 25bdccc8a..69a498beb 100644 --- a/server/modules/routing/binlog/blr.c +++ b/server/modules/routing/binlog/blr.c @@ -275,7 +275,7 @@ createInstance(SERVICE *service, char **options) inst->m_errno = 0; inst->m_errmsg = NULL; - inst->trx_safe = 1; + inst->trx_safe = 0; inst->pending_transaction = 0; inst->last_safe_pos = 0; inst->last_event_pos = 0;