git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@777806 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Davies 2009-05-23 06:32:35 +00:00
parent 9797077d6a
commit a77e964b92
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ public class UdpTransportFactory extends TransportFactory {
WireFormat wf = createWireFormat(options);
int port = location.getPort();
OpenWireFormat openWireFormat = asOpenWireFormat(wf);
UdpTransport transport = new UdpTransport(openWireFormat, port);
UdpTransport transport = (UdpTransport) createTransport(location, wf);
Transport configuredTransport = configure(transport, wf, options, true);
UdpTransportServer server = new UdpTransportServer(location, transport, configuredTransport, createReplayStrategy());