disable transactions for now, there are more situations where there are conflicting...
authorRonnie Sahlberg <ronniesahlberg@gmail.com>
Thu, 22 May 2008 08:33:54 +0000 (18:33 +1000)
committerRonnie Sahlberg <ronniesahlberg@gmail.com>
Thu, 22 May 2008 08:33:54 +0000 (18:33 +1000)
(This used to be ctdb commit e07abdfbdb7963309898f0bf5382b8e951409f0a)

ctdb/common/ctdb_ltdb.c

index 886115abc60efe67630009091d5c8b03de3d6b06..5272927ffca2cf4575379087bb1241743cba0069 100644 (file)
@@ -189,7 +189,7 @@ int ctdb_ltdb_persistent_store(struct ctdb_db_context *ctdb_db, TDB_DATA key,
 
        /* if this is a persistent database without NOSYNC then we
           will do this via a transaction */
-       if (!(ctdb_db->client_tdb_flags & TDB_NOSYNC)) {
+       if (0 && !(ctdb_db->client_tdb_flags & TDB_NOSYNC)) {
                ret = tdb_transaction_start(ctdb_db->ltdb->tdb);
                if (ret != 0) {
                        DEBUG(DEBUG_ERR, (__location__ " Failed to start local transaction\n"));