pivotal-eshu commented on a change in pull request #6659:
URL: https://github.com/apache/geode/pull/6659#discussion_r660802511
##########
File path:
geode-core/src/main/java/org/apache/geode/internal/cache/TXCommitMessage.java
##########
@@ -733,7 +733,9 @@ void firePendingCallbacks(List<EntryEventImpl> callbacks) {
try {
lastTransactionEvent = getLastTransactionEvent(callbacks);
} catch (ServiceConfigurationError ex) {
- logger.error(ex.getMessage());
+ if
(!ex.getMessage().startsWith(TXLastEventInTransactionUtils.NO_INFORMATION_FOR_SENDER_ID))
{
+ logger.error(ex.getMessage());
+ }
Review comment:
When sender == null, there is no need to get the last transaction event
in the node. There is no sender.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]