Commit 697f1b5c authored by Daniel Henninger's avatar Daniel Henninger Committed by dhenninger

Ported JM-1323 from branch.


git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10240 b35dd754-fafc-0310-a699-88a17e54d16e
parent 3a389027
...@@ -208,7 +208,8 @@ public class OutgoingSessionPromise implements RoutableChannelHandler { ...@@ -208,7 +208,8 @@ public class OutgoingSessionPromise implements RoutableChannelHandler {
// Create a connection to the remote server from the domain where the packet has been sent // Create a connection to the remote server from the domain where the packet has been sent
boolean created; boolean created;
// Make sure that only one cluster node is creating the outgoing connection // Make sure that only one cluster node is creating the outgoing connection
Lock lock = CacheFactory.getLock(domain, serversCache); // TODO: Evaluate why removing the oss part causes nasty s2s and lockup issues.
Lock lock = CacheFactory.getLock(domain+"oss", serversCache);
try { try {
lock.lock(); lock.lock();
created = LocalOutgoingServerSession created = LocalOutgoingServerSession
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment