[ https://issues.apache.org/jira/browse/UIMA-1303?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Jerry Cwiklik updated UIMA-1303: -------------------------------- Fix Version/s: 2.3AS > Uima AS Creates Jms Sessions With Wrong Acknowledgment Property > --------------------------------------------------------------- > > Key: UIMA-1303 > URL: https://issues.apache.org/jira/browse/UIMA-1303 > Project: UIMA > Issue Type: Bug > Components: Async Scaleout > Reporter: Jerry Cwiklik > Fix For: 2.3AS > > > When creating a jms session Uima AS uses the following: > connection.createSession(false, 0); > The above is bad in two ways: > 1) uses a hardcoded value of 0 instead of constant from Session class > 2) the intended value for the second param is Session.AUTO_ACKNOWLEDGE whose > actual value is 1 not 0. > Change the second value to the createSession() method to be > Session.AUTO_ACKNOWLEDGE -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.