Github user clebertsuconic commented on a diff in the pull request:

    https://github.com/apache/activemq-artemis/pull/962#discussion_r96415467
  
    --- Diff: 
artemis-jdbc-store/src/main/java/org/apache/activemq/artemis/jdbc/store/file/JDBCSequentialFile.java
 ---
    @@ -88,7 +88,12 @@ public boolean isOpen() {
     
        @Override
        public boolean exists() {
    -      return isCreated;
    +      if (isCreated) return true;
    +      try {
    +         return fileFactory.listFiles(extension).contains(filename);
    +      } catch (Exception e) {
    --- End diff --
    
    This may bite us, can you at least log an error here?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to