We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f7ebd6 commit 212ce20Copy full SHA for 212ce20
1 file changed
artemis-server/src/main/java/org/apache/activemq/artemis/core/postoffice/impl/PostOfficeImpl.java
@@ -1068,7 +1068,8 @@ private void deleteDuplicateCache(SimpleString address) throws Exception {
1068
@Override
1069
public boolean isAddressBound(final SimpleString address) throws Exception {
1070
Collection<Binding> bindings = getDirectBindings(address);
1071
- return bindings != null && !bindings.isEmpty();
+
1072
+ return (bindings != null && !bindings.isEmpty());// || pagingManager.getPageStore(address).getAddressSize() > 0;
1073
}
1074
1075
0 commit comments