fix: disconnectTriggers cannot be yielded because we could send a reply to a replyPromiseStream while waiting on the delay

This commit is contained in:
Evan Tschannen 2021-10-24 19:18:03 -07:00
parent 0e327d3d0a
commit 452404f0ee
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ public:
private:
std::unordered_map<NetworkAddress, FailureStatus> addressStatus;
YieldedAsyncMap<Endpoint, bool> endpointKnownFailed;
YieldedAsyncMap<NetworkAddress, bool> disconnectTriggers;
AsyncMap<NetworkAddress, bool> disconnectTriggers;
std::unordered_set<Endpoint> failedEndpoints;
friend class OnStateChangedActorActor;