Skip to content

Commit

Permalink
HHH-8961 corrected test failure
Browse files Browse the repository at this point in the history
Conflicts:
	hibernate-infinispan/src/test/java/org/hibernate/test/cache/infinispan/functional/cluster/EntityCollectionInvalidationTestCase.java
  • Loading branch information
brmeyer committed Feb 18, 2014
1 parent 53f7528 commit 64acebb
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -364,7 +364,7 @@ public void nodeVisited(CacheEntryVisitedEvent event) {
if ( !event.isPre() ) {
CacheKey cacheKey = (CacheKey) event.getKey();
Integer primKey = (Integer) cacheKey.getKey();
String key = cacheKey.getEntityOrRoleName() + '#' + primKey;
String key = event.getCache().getName() + '#' + primKey;
log.debug( "MyListener[" + name + "] - Visiting key " + key );
// String name = fqn.toString();
String token = ".functional.";
Expand Down

0 comments on commit 64acebb

Please sign in to comment.