mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-20 16:15:59 +01:00
* 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:
parent
28c082551d
commit
9b3926baf1
@ -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
|
||||
|
@ -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{}}.
|
||||
|
||||
%%--------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user