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
knownPatterns.Add(new(".*SingleStepGuardRails::ShouldForceInstrumentationOverride: Found incompatible runtime .NET Core 3.0 or lower",RegexOptions.Compiled));
2497
2497
knownPatterns.Add(new(".*SingleStepGuardRails::ShouldForceInstrumentationOverride: Found incompatible runtime .NET 6.0.12 and earlier have known crashing bugs",RegexOptions.Compiled));
2498
2498
2499
+
// Make sure we _only_ add this while .NET 10 is in preview (to make sure we don't forget in the final release)
knownPatterns.Add(new(@".*SingleStepGuardRails::ShouldForceInstrumentationOverride: Found incompatible runtime .NET 10 or higher.*",RegexOptions.Compiled));
2503
+
}
2504
+
2499
2505
// CI Visibility known errors
2500
2506
knownPatterns.Add(new(@".*The Git repository couldn't be automatically extracted.*",RegexOptions.Compiled));
2501
2507
knownPatterns.Add(new(@".*DD_GIT_REPOSITORY_URL is set with.*",RegexOptions.Compiled));
0 commit comments