Fix. Close database object in vm/forward_to_extension.lua (#2196)
This commit is contained in:
parent
21b63b086b
commit
c28fbf9c6a
|
|
@ -142,7 +142,7 @@
|
|||
if (storage_type == "base64") then
|
||||
local dbh = Database.new('system', 'base64')
|
||||
dbh:query(sql, params);
|
||||
env:release();
|
||||
dbh:release();
|
||||
else
|
||||
dbh:query(sql, params);
|
||||
end
|
||||
|
|
|
|||
Loading…
Reference in New Issue