mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.sql: Allow onconnect callback to fail connection to the DB by returning false, err
This commit is contained in:
parent
7573762c91
commit
137f763966
1 changed files with 4 additions and 1 deletions
|
@ -111,7 +111,10 @@ function engine:connect()
|
|||
self.conn = dbh;
|
||||
self.prepared = {};
|
||||
self:set_encoding();
|
||||
self:onconnect();
|
||||
local ok, err = self:onconnect();
|
||||
if ok == false then
|
||||
return ok, err;
|
||||
end
|
||||
return true;
|
||||
end
|
||||
function engine:onconnect()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue