Skip to content
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.

Commit

Permalink
BZ-1049009 - fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
jmazzitelli committed Dec 19, 2014
1 parent 74abe07 commit 226e8f2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -356,7 +356,7 @@ private CommandResponse rawSend(Command command) throws Throwable {
if (rmie.getCause() != null && rmie.getCause() instanceof javax.net.ssl.SSLException
&& rmie.getCause().getMessage() != null
&& rmie.getCause().getMessage().startsWith("Connection has been shutdown")) { //$NON-NLS-1$
ret_response = getRemotingClient().invoke(command, null);
ret_response = invoke(command);
OutgoingCommandTrace.finish(command, ret_response);
} else {
throw rmie;
Expand Down

0 comments on commit 226e8f2

Please sign in to comment.