* src/ejabberd_local.erl: The iq_response table wasn't cloned

automatically on all nodes which resulted in a single point of
failure

SVN Revision: 1257
This commit is contained in:
Alexey Shchepin 2008-03-25 22:23:38 +00:00
parent 28c082551d
commit 9b3926baf1
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2008-03-26 Alexey Shchepin <alexey@process-one.net>
* src/ejabberd_local.erl: The iq_response table wasn't cloned
automatically on all nodes which resulted in a single point of
failure
2008-03-25 Badlop <badlop@process-one.net>
* src/Makefile.in: Failure to install epam is not

View File

@ -171,6 +171,7 @@ init([]) ->
mnesia:create_table(iq_response,
[{ram_copies, [node()]},
{attributes, record_info(fields, iq_response)}]),
mnesia:add_table_copy(iq_response, node(), ram_copies),
{ok, #state{}}.
%%--------------------------------------------------------------------