Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
deardeng committed Sep 27, 2024
1 parent 41ba0dd commit cf95f2d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1011,7 +1011,8 @@ private void prepareAndSendSnapshotTaskForOlapTable(Database db) {
Tablet tablet = index.getTablet(idChain.getTabletId());
Replica replica = tablet.getReplicaById(idChain.getReplicaId());
long signature = env.getNextId();
SnapshotTask task = new SnapshotTask(null, replica.getBackendIdWithoutException(), signature, jobId, db.getId(),
SnapshotTask task = new SnapshotTask(null, replica.getBackendIdWithoutException(),
signature, jobId, db.getId(),
tbl.getId(), part.getId(), index.getId(), tablet.getId(), part.getVisibleVersion(),
tbl.getSchemaHashByIndexId(index.getId()), timeoutMs, true /* is restore task*/);
batchTask.addTask(task);
Expand Down

0 comments on commit cf95f2d

Please sign in to comment.