Skip to content

Commit

Permalink
Update inlong-manager/manager-service/src/main/java/org/apache/inlong…
Browse files Browse the repository at this point in the history
…/manager/service/sink/StreamSinkServiceImpl.java

Co-authored-by: AloysZhang <[email protected]>
  • Loading branch information
dockerzhang and aloyszhang authored Apr 17, 2024
1 parent 97adce8 commit f5b73f6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,8 @@ public List<BatchResult> batchSave(List<SinkRequest> requestList, String operato
List<BatchResult> resultList = new ArrayList<>();
for (SinkRequest request : requestList) {
BatchResult result = BatchResult.builder()
.uniqueKey(request.getSinkName() + "-" + request.getInlongGroupId() + "-"
+ request.getInlongStreamId())
.uniqueKey(request.getInlongGroupId() + "-"
+ request.getInlongStreamId() + "-" + request.getSinkName() )
.operationTarget(OperationTarget.SINK)
.build();
try {
Expand Down

0 comments on commit f5b73f6

Please sign in to comment.