You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix race condition in GrpcMonitor's GrpcChannel management (pulumi#304)
While creating integration tests I faced a race condition in GrpcMonitor
when the channel retrieved from the static _monitorChannels was null
although the key had already been set.
Replacing the complex implementation with custom locking by the standard
pattern ConcurrentDictionary<K, Lazy<V>> has resolved this.
// Using a static dictionary to keep track of and re-use gRPC channels
17
18
// According to the docs (https://docs.microsoft.com/en-us/aspnet/core/grpc/performance?view=aspnetcore-6.0#reuse-grpc-channels), creating GrpcChannels is expensive so we keep track of a bunch of them here
0 commit comments