INT-1797 Polishing; fix failing test

This commit is contained in:
Gary Russell
2011-02-20 15:35:27 -05:00
parent ecff2ce21e
commit 2ddbf35cfb
2 changed files with 1 additions and 2 deletions

View File

@@ -385,7 +385,7 @@ public abstract class AbstractConnectionFactory
}
}
if (logger.isTraceEnabled())
logger.trace("Host" + this.host + " port " + this.port + " SelectionCount: " + selectionCount);
logger.trace("Host " + this.host + " port " + this.port + " SelectionCount: " + selectionCount);
if (selectionCount > 0) {
Set<SelectionKey> keys = selector.selectedKeys();
Iterator<SelectionKey> iterator = keys.iterator();

View File

@@ -13,7 +13,6 @@
<int-ip:tcp-connection-factory id="server"
type="server"
using-nio="true"
single-use="true"
port="#{tcpIpUtils.findAvailableServerSocket(10000)}"
/>