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
## Summary of changes
Disables profiling in the crash smoke tests
## Reason for change
There's a freeze we sometimes hit in the smoke tests. It was similar to
an issue we saw in some integration tests. Disabling the profiler in
those tests (in #6497)
resolved the issue, so we think it will resolve it here. We'll
investigate the freeze separately, this is just trying to reduce flake.
## Implementation details
Explicitly set `DD_PROFILING_ENABLED=0`
## Test coverage
This is the test
knownPatterns.Add(new(@".*DynamicDispatcherImpl::LoadClassFactory: Error trying to load continuous profiler class factory.*",RegexOptions.Compiled));
2263
+
knownPatterns.Add(new(@".*Error loading all cor profiler class factories\.",RegexOptions.Compiled));
2264
+
2263
2265
// profiler occasionally throws this if shutting down
2264
2266
knownPatterns.Add(new(@".*LinuxStackFramesCollector::CollectStackSampleImplementation: Unable to send signal .*Error code: No such process",RegexOptions.Compiled));
2265
2267
// profiler throws this on .NET 7 - currently allowed
0 commit comments