Skip to content
Snippets Groups Projects
Commit cc65c2f4 authored by Serguei Kolos's avatar Serguei Kolos
Browse files

Apply recovery when CORBA SystemException completion status is MAYBE

parent 845c4b5f
No related branches found
No related tags found
No related merge requests found
......@@ -93,9 +93,8 @@ class ClientInterceptor extends org.omg.CORBA.LocalObject implements
return ;
}
if (exception.completed != org.omg.CORBA.CompletionStatus.COMPLETED_NO) {
String s = exception.completed == org.omg.CORBA.CompletionStatus.COMPLETED_YES ? "YES" : "MAYBE";
ers.Logger.debug(1, threadName + ": Completion status is '" + s + "', no recovery attempt will be made");
if (exception.completed == org.omg.CORBA.CompletionStatus.COMPLETED_YES) {
ers.Logger.debug(1, threadName + ": Completion status is 'YES', no recovery attempt will be made");
return ;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment