Skip to content

Commit

Permalink
Fix missing linking
Browse files Browse the repository at this point in the history
  • Loading branch information
tinohager committed May 30, 2022
1 parent e14b716 commit c48056f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Portalum.Zvt/ZvtClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ private async Task<CommandResponse> SendCommandAsync(
{
using var timeoutCancellationTokenSource = new CancellationTokenSource(this._commandCompletionTimeout);
using var dataReceivcedCancellationTokenSource = new CancellationTokenSource();
using var linkedCancellationTokenSource = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, dataReceivcedCancellationTokenSource.Token);
using var linkedCancellationTokenSource = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, dataReceivcedCancellationTokenSource.Token, timeoutCancellationTokenSource.Token);

var commandResponse = new CommandResponse
{
Expand Down

0 comments on commit c48056f

Please sign in to comment.