HappenLee commented on PR #67012:
URL: https://github.com/apache/doris/pull/67012#issuecomment-5380747481

   protected List<String> getOnStorageProfileInfos() {
         List<String> res = Lists.newArrayList();
         try {
             File profileDir = new File(PROFILE_STORAGE_PATH);
             if (!profileDir.exists()) {
                 return res;
             }
   
             File[] files = profileDir.listFiles();
             if (files != null) {
                 // 收集文件
             }
         } catch (Exception e) {
             LOG.error(...);
         }
   
         return res;
     }异常没有传播到外层 loader,因此外层认为扫描成功,后续不会重启扫描了 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to