You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@iotdb.apache.org by GitBox <gi...@apache.org> on 2021/01/26 04:45:21 UTC

[GitHub] [iotdb] neuyilan commented on a change in pull request #2567: bug fix - skip illegal path when delete multi timeseries

neuyilan commented on a change in pull request #2567:
URL: https://github.com/apache/iotdb/pull/2567#discussion_r564209903



##########
File path: cluster/src/main/java/org/apache/iotdb/cluster/log/applier/BaseApplier.java
##########
@@ -73,6 +74,9 @@ void applyPhysicalPlan(PhysicalPlan plan, DataGroupMember dataGroupMember)
       } catch (QueryProcessException e) {
         if (e.getCause() instanceof StorageGroupNotSetException) {
           executeAfterSync(plan);
+        } else if (e instanceof BatchProcessException) {
+          String message = "Exception occurred while processing non-query. ";
+          logger.warn(message, e);

Review comment:
       ```suggestion
             logger.warn("Exception occurred while processing non-query. ", e);
   ```
   




----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org