Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.4.0AS
-
None
Description
In BaseUIMAAsynchronousEngineCommon_impl.handleProcessReplyFromCasMultiplier() there is a comparison of incompatible types:
if(casReferenceId.equals(inputCasCacheRequest) )
The inputCasCacheRequest is of type ClientRequest so the above will always fail.
The fix is:
if(casReferenceId.equals(inputCasCacheRequest.getCasReferenceId()) )