25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-22 16:20:52 +01:00

add pgsql driver monitoring

SVN Revision: 1200
This commit is contained in:
Christophe Romain 2008-02-19 17:06:49 +00:00
parent 6e3ac3a5a0
commit 9466b1a21f
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2008-02-19 Christophe Romain <christophe.romain@process-one.net>
* src/odbc/ejabberd_odbc.erl: add pgsql driver monitoring
2008-02-19 Mickael Remond <mremond@process-one.net>
* src/ejabberd_config.erl: dirty_get_registered_users now

View File

@ -266,6 +266,7 @@ odbc_connect(SQLServer) ->
pgsql_connect(Server, Port, DB, Username, Password) ->
case pgsql:connect(Server, DB, Username, Password, Port) of
{ok, Ref} ->
erlang:monitor(process, Ref),
{ok, #state{db_ref = Ref, db_type = pgsql}};
{error, Reason} ->
?ERROR_MSG("PostgreSQL connection failed: ~p~n", [Reason]),