in src/ServiceProfiler.EventPipe.Otel/Microsoft.ApplicationInsights.Profiler.Shared/Orchestrations/Scheduling/EventPipeSchedulingPolicy.cs [26:31]
protected T UpdateRefreshAndGetSetting<T>(T newSetting, T currentSetting, ref bool needsRefresh)
{
needsRefresh = needsRefresh || currentSetting is not null && !currentSetting.Equals(newSetting);
return newSetting;
}