chengjianyun commented on a change in pull request #4079:
URL: https://github.com/apache/iotdb/pull/4079#discussion_r738050891
##########
File path:
cluster/src/main/java/org/apache/iotdb/cluster/metadata/CMManager.java
##########
@@ -1180,38 +1180,40 @@ public void setCoordinator(Coordinator coordinator) {
}
return partialPaths;
}
- } catch (IOException | TException e) {
- throw new MetadataException(e);
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
throw new MetadataException(e);
+ } catch (Exception e) {
+ throw new MetadataException(e);
Review comment:
Fixed all related issues. See the PR:
https://github.com/apache/iotdb/pull/4252
--
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]