Sfoglia il codice sorgente

The private static variable _isHealthy has no meaning in a singleton. If you use multi-host mode, there will be status detection problems (#982)

master
lbhnrg2021 3 anni fa
committed by GitHub
parent
commit
1ef8cf5166
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      src/DotNetCore.CAP/Internal/IConsumerRegister.Default.cs

+ 1
- 1
src/DotNetCore.CAP/Internal/IConsumerRegister.Default.cs Vedi File

@@ -35,7 +35,7 @@ namespace DotNetCore.CAP.Internal
private BrokerAddress _serverAddress;
private Task _compositeTask;
private bool _disposed;
private static bool _isHealthy = true;
private bool _isHealthy = true;

// diagnostics listener
// ReSharper disable once InconsistentNaming


Caricamento…
Annulla
Salva