Sfoglia il codice sorgente

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

release/3.x.x
Christian Kratky 5 anni fa
parent
commit
f3ea7008e5
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      Source/MQTTnet/Internal/AsyncLock.cs

+ 1
- 1
Source/MQTTnet/Internal/AsyncLock.cs Vedi File

@@ -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;
}


Caricamento…
Annulla
Salva