mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#2108 - ebean-k8scache and ebean-cluster not invalidated when only remoteTableMod or remoteCacheEvent
This commit is contained in:
+3
-1
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user