SteveYurongSu commented on code in PR #12138:
URL: https://github.com/apache/iotdb/pull/12138#discussion_r1531622250
##########
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/pipe/event/EnrichedEvent.java:
##########
@@ -270,6 +276,10 @@ public long getCommitId() {
return commitId;
}
+ public String generateSubscriptionCommitId() {
+ return String.format("%s_%s", committerKey, commitId);
+ }
Review Comment:
```suggestion
public String generateCommitterKeyAndCommitIdString() {
return String.format("%s_%s", committerKey, commitId);
}
```
--
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]