]
Dan Berindei updated ISPN-4469:
-------------------------------
Status: Pull Request Sent (was: Open)
Git Pull Request:
StateConsumerImpl segment change tracing is incorrect
-----------------------------------------------------
Key: ISPN-4469
URL:
https://issues.jboss.org/browse/ISPN-4469
Project: Infinispan
Issue Type: Bug
Security Level: Public(Everyone can see)
Affects Versions: 7.0.0.Alpha4
Reporter: William Burns
Assignee: Mircea Markus
StateConsumerImpl has some tracing to tell you what segments had changed. Unfortunately
the arguments are in the wrong order and can cause some confusion.
{code}
if (trace) {
log.tracef("On cache %s we have: new segments: %s; old segments:
%s; removed segments: %s; added segments: %s",
cacheName, removedSegments, newSegments, previousSegments,
addedSegments);
}
{code}
It should be newSegments, previousSegments, removedSegments, addedSegments instead.