Skip to content

Commit

Permalink
Update Microsoft.Azure.Cosmos/src/Handler/RequestInvokerHandler.cs
Browse files Browse the repository at this point in the history
Co-authored-by: Matias Quaranta <ealsur@users.noreply.github.com>
  • Loading branch information
kirankumarkolli and ealsur committed Jan 30, 2024
1 parent f79df1e commit 3204ab0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ private void SetPriorityLevel(RequestMessage requestMessage)
RequestOptions promotedRequestOptions = requestMessage.RequestOptions;
if (promotedRequestOptions?.PriorityLevel.HasValue == true)
{
priorityLevel = promotedRequestOptions.PriorityLevel;
priorityLevel = promotedRequestOptions.PriorityLevel.Value;
}

if (priorityLevel.HasValue)
Expand Down

0 comments on commit 3204ab0

Please sign in to comment.