diff --git a/ChangeLog b/ChangeLog index f137e59a0..930ff7984 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-03-26 Alexey Shchepin + + * 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 * src/Makefile.in: Failure to install epam is not diff --git a/src/ejabberd_local.erl b/src/ejabberd_local.erl index 50e62ba55..b54173581 100644 --- a/src/ejabberd_local.erl +++ b/src/ejabberd_local.erl @@ -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{}}. %%--------------------------------------------------------------------