diff options
author | Kim Alvefur <zash@zash.se> | 2012-07-30 06:01:41 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2012-07-30 06:01:41 +0200 |
commit | ef580b637e68c5fd6ee649c3ea2c56e4393b3a1a (patch) | |
tree | 9cdac4bf20bd3c0af72e4cfaf1cb88aeb7d7d3ae | |
parent | 9be3d774a9bd516abed3b081202e58f761570f2d (diff) | |
download | prosody-ef580b637e68c5fd6ee649c3ea2c56e4393b3a1a.tar.gz prosody-ef580b637e68c5fd6ee649c3ea2c56e4393b3a1a.zip |
mod_storage_sql: Complete transactions in list_stores and purge
-rw-r--r-- | plugins/mod_storage_sql.lua | 10 |
1 files changed, 5 insertions, 5 deletions
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); |