Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion v3/src/main/java/com/skyflow/utils/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public static com.skyflow.vault.data.InsertResponse formatResponse(InsertRespons
tokensMap.put(key, tokenList);
}
}
Success success = new Success(index, record.get(index).getSkyflowId().get(), tokensMap, null);
Success success = new Success(indexNumber, record.get(index).getSkyflowId().get(), tokensMap, null);
successRecords.add(success);
}
indexNumber++;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,4 +219,4 @@ private void configureInsertConcurrencyAndBatchSize(int totalRequests) {
this.insertConcurrencyLimit = Math.min(Constants.INSERT_CONCURRENCY_LIMIT, maxConcurrencyNeeded);
}
}
}
}
Loading