ericpai commented on a change in pull request #4571:
URL: https://github.com/apache/iotdb/pull/4571#discussion_r769411578
##########
File path:
cluster/src/main/java/org/apache/iotdb/cluster/query/reader/ClusterReaderFactory.java
##########
@@ -897,11 +897,14 @@ private GroupByExecutor getRemoteGroupByExecutor(
logger.debug("{}: no data for {} from {}",
metaGroupMember.getName(), path, node);
return new EmptyReader();
}
- } catch (TException | IOException e) {
- logger.error("{}: Cannot query {} from {}", metaGroupMember.getName(),
path, node, e);
+ } catch (TException e) {
+ logger.error(metaGroupMember.getName() + ": Cannot query " + path + "
from " + node, e);
+ throw new StorageEngineException(e.getMessage());
Review comment:
Same as above.
--
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]