Verifies the integrety of the projects, as builds are executed immediately after a code change was detected. This plan provides no artifiacts (use a nightly build instead).

Build: #1030 was successful Changes by Florian Schmaus

Stages & jobs

  1. Build Stage

Build result summary

Details

Completed
Queue duration
< 1 second
Duration
9 minutes
Labels
None
Agent
bamboo-agent-iowa.igniterealtime.org 1
Revision
cfa3ce1573e54c356b24562df77d204f5648c06e
Total tests
828
Successful since
#1027 ()

Tests

Code commits

Author Commit Message Commit date
Florian Schmaus Florian Schmaus cfa3ce1573e54c356b24562df77d204f5648c06e Merge pull request #650 from Flowdalic/sinttest-muc-join-leave-cycle
Fix deadlock in MUC leave
Florian Schmaus Florian Schmaus 6b67c8a1e6667ee95ae3a4319f1fbf3248ead3fb [muc] Fix deadlock on join/leave cycle
There was a potential deadlock if leave() is invoked it will wait for
the leave response using a stanza collector while holding the MUCs
monitor. However, the leave response is also processed by a stanza
listener invoking userHasLeft() which also requires the monitor lock
currently held by the thread invoking leave(). The stanza listener
trying to invoke userHasLeft() will now also be blocked, because the
MUC's monitor lock is not available. However, this will, in turn,
prevent the stanza collector from seeing the leave response, and the
thread invoking leave() will continue to hold the MUC monitor because
the collector does not return the response.

We fix this by not invoking userHasLeft() when we are currently
leaving or destroying the MUC. This fix requires that we change log
core logic so that the collectors are invoked *after* the listeners.

The main problem here is that a MUC service may send a leave/destroy
"response" (actually a unavailable presence) even without us
requesting it. For example, when the MUC service is (temporarily) shut
down. Therefore, we need to handle these cases as well.

Also add an integration test that tests for this case.
Florian Schmaus Florian Schmaus abcc3ae7c7088b9935a51da05776a21d31e230d1 [muc] Make MultiUserChat.destroy() synchronized
As all MUC state changing operations, destory() should also be
synchronized.
Florian Schmaus Florian Schmaus a82ea9caa441e096eee09f9cf1c9ccbf34df4bf0 [sinttest] Use mkdirs() to create all components of the path