Skip to content

Commit

Permalink
keep default batchSize consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathanael Shim authored and Nathanael Shim committed Mar 8, 2024
1 parent f1b62de commit b114b9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IndicoV2.Abstractions/Storage/IStorageClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public interface IStorageClient
Task<IEnumerable<IFileMetadata>> UploadAsync(IEnumerable<string> filePaths, CancellationToken cancellationToken);

Task<(string Name, string Meta)[]> UploadAsync(IEnumerable<(string Path, Stream Content)> files,
CancellationToken cancellationToken, int batchSize = 10);
CancellationToken cancellationToken, int batchSize = 20);

JArray Serialize(IEnumerable<IFileMetadata> filesMetadata);
}
Expand Down

0 comments on commit b114b9b

Please sign in to comment.