From 7d6a3f2438b72078d6d5ffad8f6f4ed41e144136 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Mon, 30 Jul 2012 06:01:41 +0200 Subject: mod_storage_sql: Complete transactions in list_stores and purge --- plugins/mod_storage_sql.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'plugins') diff --git a/plugins/mod_storage_sql.lua b/plugins/mod_storage_sql.lua index c5a711bc..c20e4473 100644 --- a/plugins/mod_storage_sql.lua +++ b/plugins/mod_storage_sql.lua @@ -383,21 +383,21 @@ function driver:list_stores(username) -- Not to be confused with the list store end local stmt, err = dosql(sql, host, username); if not stmt then - return nil, err; + return rollback(nil, err); end local stores = {}; for row in stmt:rows() do stores[#stores+1] = row[1]; end - return stores; + return commit(stores); end function driver:purge(username) local stmt, err = dosql("DELETE FROM `prosody` WHERE `host`=? AND `user`=?", host, username); - if not stmt then return stmt, err; end + if not stmt then return rollback(stmt, err); end local changed, err = stmt:affected(); - if not changed then return changed, err; end - return true, changed; + if not changed then return rollback(changed, err); end + return commit(true, changed); end module:add_item("data-driver", driver); -- cgit v1.2.3