aboutsummaryrefslogtreecommitdiffstats
path: root/tools/migration
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-04-08 16:33:42 +0200
committerKim Alvefur <zash@zash.se>2017-04-08 16:33:42 +0200
commit699dab7c6d9eec4565b11f76d1e27d17321176df (patch)
treed905390ef886fd85a1cdc1443611ab07eaf784ea /tools/migration
parent6b3a33a0835f774ab7e0f021d885b47b7631b7c4 (diff)
downloadprosody-699dab7c6d9eec4565b11f76d1e27d17321176df.tar.gz
prosody-699dab7c6d9eec4565b11f76d1e27d17321176df.zip
migration/prosody_sql: Commit transaction when all items have been processed
Diffstat (limited to 'tools/migration')
-rw-r--r--tools/migration/migrator/prosody_sql.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/migration/migrator/prosody_sql.lua b/tools/migration/migrator/prosody_sql.lua
index 2dd07bdc..642b74c2 100644
--- a/tools/migration/migrator/prosody_sql.lua
+++ b/tools/migration/migrator/prosody_sql.lua
@@ -161,7 +161,7 @@ local function writer(output, iter)
local insert_sql = "INSERT INTO `prosody` (`host`,`user`,`store`,`key`,`type`,`value`) VALUES (?,?,?,?,?,?)";
return function(item)
- if not item then return end -- end of input
+ if not item then assert(engine.conn:commit()) return end -- end of input
local host = item.host or "";
local user = item.user or "";
for store, data in pairs(item.stores) do