#2108 - ebean-k8scache and ebean-cluster not invalidated when only remoteTableMod or remoteCacheEvent

This commit is contained in:
rob bygrave
2020-11-24 22:16:14 +13:00
parent 21f43dc395
commit f4ea674d60
2 changed files with 35 additions and 1 deletions
@@ -152,7 +152,9 @@ public class RemoteTransactionEvent implements Runnable, BinaryWritable {
public boolean isEmpty() {
return beanPersistList.isEmpty()
&& (tableList == null || tableList.isEmpty())
&& (deleteByIdMap == null || deleteByIdMap.isEmpty());
&& (deleteByIdMap == null || deleteByIdMap.isEmpty())
&& remoteTableMod == null
&& remoteCacheEvent == null;
}
public void addBeanPersistIds(BeanPersistIds beanPersist) {