Skip to content

Commit

Permalink
Fix payload assembler default timeout
Browse files Browse the repository at this point in the history
Signed-off-by: Victor Chang <[email protected]>
  • Loading branch information
mocsharp committed Jan 2, 2024
1 parent da29917 commit 204c313
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ private async Task RemovePendingPayloads()
/// <param name="file">Instance to be queued</param>
/// <param name="dataOrigin">The service that triggered this queue request</param>
/// <param name="timeout">Number of seconds the bucket shall wait before sending the payload to be processed. Note: timeout cannot be modified once the bucket is created.</param>
public async Task<Guid> Queue(string bucket, FileStorageMetadata file, DataOrigin dataOrigin, uint timeout) => await Queue(bucket, file, dataOrigin, DEFAULT_TIMEOUT, CancellationToken.None).ConfigureAwait(false);
public async Task<Guid> Queue(string bucket, FileStorageMetadata file, DataOrigin dataOrigin, uint timeout) => await Queue(bucket, file, dataOrigin, timeout, CancellationToken.None).ConfigureAwait(false);
/// <summary>
/// Queues a new instance of <see cref="FileStorageMetadata"/>.
/// </summary>
Expand Down

0 comments on commit 204c313

Please sign in to comment.