From 8b34194d802cb7b5fb74a82c5b50123f2f26a613 Mon Sep 17 00:00:00 2001 From: Varrun Ramani Date: Wed, 21 May 2014 15:42:50 -0700 Subject: [PATCH] Fixed doc bug in setSocketConfigurator() The configuration in FrameHandlerFactory sets the configuration before connecting the socket and not after connecting the socket. --- src/com/rabbitmq/client/ConnectionFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/rabbitmq/client/ConnectionFactory.java b/src/com/rabbitmq/client/ConnectionFactory.java index 6c716bae30..a07facec5f 100644 --- a/src/com/rabbitmq/client/ConnectionFactory.java +++ b/src/com/rabbitmq/client/ConnectionFactory.java @@ -409,7 +409,7 @@ public SocketConfigurator getSocketConfigurator() { /** * Set the socket configurator. This gets a chance to "configure" a socket - * after it has been opened. The default socket configurator disables + * before it has been opened. The default socket configurator disables * Nagle's algorithm. * * @param socketConfigurator the configurator to use