ソースを参照

Merge remote-tracking branch 'origin/develop' into develop

release/3.x.x
Christian Kratky 5年前
コミット
f3ea7008e5
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      Source/MQTTnet/Internal/AsyncLock.cs

+ 1
- 1
Source/MQTTnet/Internal/AsyncLock.cs ファイルの表示

@@ -23,7 +23,7 @@ namespace MQTTnet.Internal
public Task<IDisposable> WaitAsync(CancellationToken cancellationToken)
{
var task = _semaphore.WaitAsync(cancellationToken);
if (task.IsCompleted)
if (task.Status == TaskStatus.RanToCompletion)
{
return _releaser;
}


読み込み中…
キャンセル
保存