Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
2c219fd
add `di_enabled` to settings response
daniel-mohedano Jul 4, 2025
a911ae0
add FTR related metrics
daniel-mohedano Jul 4, 2025
d20159e
add FTR to execution settings
daniel-mohedano Jul 4, 2025
c4c84d6
add basic exception replay integration in agent mode
daniel-mohedano Jul 14, 2025
ae31670
feat: headless and agentless changes
daniel-mohedano Jul 22, 2025
4f2d6a9
Merge branch 'master' into daniel.mohedano/failed-test-replay
daniel-mohedano Jul 22, 2025
c7eeac8
fix: tests
daniel-mohedano Jul 23, 2025
14cf11c
fix: testng capabilities
daniel-mohedano Aug 4, 2025
461fb1f
feat: refactor agentless intakes
daniel-mohedano Aug 6, 2025
14b1054
Merge branch 'master' into daniel.mohedano/failed-test-replay
daniel-mohedano Aug 6, 2025
a87eff0
chore: update smoke test fixtures
daniel-mohedano Aug 6, 2025
19b4edf
test: add unit test for new Intake enum
daniel-mohedano Aug 6, 2025
9e81cc7
test: remove ftr from instrumentation tests (not used)
daniel-mohedano Aug 6, 2025
4e3deb4
test: introduce FTR smoke tests for headfull and headless modes
daniel-mohedano Aug 11, 2025
f931654
style: spotless and codenarc
daniel-mohedano Aug 11, 2025
eacde60
feat: add test event finished FTR telemetry
daniel-mohedano Aug 11, 2025
0228f71
feat: add `product` field to snapshots
daniel-mohedano Aug 11, 2025
88fd665
feat: implement SuiteEnd listener for sink flushing
daniel-mohedano Aug 11, 2025
ec9c54d
feat: introduce new config variables for debugger
daniel-mohedano Aug 12, 2025
d4d2432
chore: remove todo
daniel-mohedano Aug 19, 2025
ffda9b3
Merge branch 'master' into daniel.mohedano/failed-test-replay
daniel-mohedano Aug 19, 2025
49eaebf
feat: align FTR settings with JS' implementation
daniel-mohedano Aug 21, 2025
b4cef2c
feat: PR suggestions
daniel-mohedano Aug 22, 2025
d82a7fa
feat: implement debugger config bridge
daniel-mohedano Aug 27, 2025
ab8d8e9
fix: move check from policy to history for FTR
daniel-mohedano Aug 27, 2025
bd81769
fix: tests
daniel-mohedano Aug 27, 2025
c257390
chore: update codeowners
daniel-mohedano Aug 27, 2025
73bf81d
Merge branch 'master' into daniel.mohedano/failed-test-replay
daniel-mohedano Aug 27, 2025
3a89ca3
test: better unit tests
daniel-mohedano Sep 1, 2025
54dbb03
Merge branch 'master' into daniel.mohedano/failed-test-replay
daniel-mohedano Sep 1, 2025
a1f58f3
fix: add CI Intake back
daniel-mohedano Sep 1, 2025
719a934
style: spotless
daniel-mohedano Sep 1, 2025
b223a21
fix: tests
daniel-mohedano Sep 1, 2025
58a096b
fix: correct intake usage
daniel-mohedano Sep 1, 2025
920421a
fix: change info to debug log
daniel-mohedano Sep 3, 2025
2852d25
feat: move away from deferred queue in favor of merging updates
daniel-mohedano Sep 3, 2025
d80e531
fix: pr suggestions
daniel-mohedano Sep 4, 2025
34cf624
feat: refactor FTR logic into it's own exceptiondebugger implementation
daniel-mohedano Sep 4, 2025
887350f
fix: jacoco coverage
daniel-mohedano Sep 4, 2025
f1f1264
fix: remove snapshot product and async instrumentation config
daniel-mohedano Sep 8, 2025
8e145f4
fix: remove sync config test
daniel-mohedano Sep 8, 2025
bb06f75
Merge branch 'master' into daniel.mohedano/failed-test-replay
daniel-mohedano Sep 8, 2025
098b929
fix: add history on test start
daniel-mohedano Sep 8, 2025
a56d10f
fix: use synchronized instead of atomic refs in bridge
daniel-mohedano Sep 8, 2025
f32dcef
fix: abstract repeated smoke test logic
daniel-mohedano Sep 8, 2025
ea090f9
fix: synchronization on bridge
daniel-mohedano Sep 9, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -87,15 +87,17 @@
/dd-java-agent/instrumentation/maven-surefire/ @DataDog/ci-app-libraries-java
/dd-java-agent/instrumentation/weaver/ @DataDog/ci-app-libraries-java
/dd-smoke-tests/gradle/ @DataDog/ci-app-libraries-java
/dd-smoke-tests/junit-console/ @DataDog/ci-app-libraries-java
/dd-smoke-tests/maven/ @DataDog/ci-app-libraries-java
/internal-api/src/main/java/datadog/trace/api/git/ @DataDog/ci-app-libraries-java
**/civisibility/ @DataDog/ci-app-libraries-java
**/CiVisibility*.java @DataDog/ci-app-libraries-java
**/CiVisibility*.groovy @DataDog/ci-app-libraries-java

# @DataDog/debugger-java (Live Debugger)
/dd-java-agent/agent-debugger/ @DataDog/debugger-java
/dd-smoke-tests/debugger-integration-tests/ @DataDog/debugger-java
/dd-java-agent/agent-debugger/ @DataDog/debugger-java
/dd-smoke-tests/debugger-integration-tests/ @DataDog/debugger-java
/internal-api/src/main/java/datadog/trace/api/debugger/ @DataDog/debugger-java

# @DataDog/data-jobs-monitoring
/dd-java-agent/instrumentation/spark/ @DataDog/data-jobs-monitoring
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
import datadog.communication.http.HttpRetryPolicy;
import datadog.communication.http.OkHttpUtils;
import datadog.trace.api.Config;
import datadog.trace.api.intake.Intake;
import datadog.trace.util.throwable.FatalAgentMisconfigurationError;
import java.util.function.Function;
import javax.annotation.Nullable;
import okhttp3.HttpUrl;
import okhttp3.OkHttpClient;
Expand All @@ -28,8 +28,8 @@ public BackendApiFactory(Config config, SharedCommunicationObjects sharedCommuni
public @Nullable BackendApi createBackendApi(Intake intake) {
HttpRetryPolicy.Factory retryPolicyFactory = new HttpRetryPolicy.Factory(5, 100, 2.0, true);

if (intake.agentlessModeEnabled.apply(config)) {
HttpUrl agentlessUrl = getAgentlessUrl(intake);
if (intake.isAgentlessEnabled(config)) {
HttpUrl agentlessUrl = HttpUrl.get(intake.getAgentlessUrl(config));
String apiKey = config.getApiKey();
if (apiKey == null || apiKey.isEmpty()) {
throw new FatalAgentMisconfigurationError(
Expand Down Expand Up @@ -58,46 +58,4 @@ public BackendApiFactory(Config config, SharedCommunicationObjects sharedCommuni
+ "and agent does not support EVP proxy");
return null;
}

private HttpUrl getAgentlessUrl(Intake intake) {
String customUrl = intake.customUrl.apply(config);
if (customUrl != null && !customUrl.isEmpty()) {
return HttpUrl.get(String.format("%s/api/%s/", customUrl, intake.version));
} else {
String site = config.getSite();
return HttpUrl.get(
String.format("https://%s.%s/api/%s/", intake.urlPrefix, site, intake.version));
}
}

public enum Intake {
API("api", "v2", Config::isCiVisibilityAgentlessEnabled, Config::getCiVisibilityAgentlessUrl),
LLMOBS_API("api", "v2", Config::isLlmObsAgentlessEnabled, Config::getLlMObsAgentlessUrl),
LOGS(
"http-intake.logs",
"v2",
Config::isAgentlessLogSubmissionEnabled,
Config::getAgentlessLogSubmissionUrl),
CI_INTAKE(
"ci-intake",
"v2",
Config::isCiVisibilityAgentlessEnabled,
Config::getCiVisibilityIntakeAgentlessUrl);

public final String urlPrefix;
public final String version;
public final Function<Config, Boolean> agentlessModeEnabled;
public final Function<Config, String> customUrl;

Intake(
String urlPrefix,
String version,
Function<Config, Boolean> agentlessModeEnabled,
Function<Config, String> customUrl) {
this.urlPrefix = urlPrefix;
this.version = version;
this.agentlessModeEnabled = agentlessModeEnabled;
this.customUrl = customUrl;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -1308,10 +1308,6 @@ && isExplicitlyDisabled(TraceInstrumentationConfig.CODE_ORIGIN_FOR_SPANS_ENABLED
&& isExplicitlyDisabled(DebuggerConfig.DISTRIBUTED_DEBUGGER_ENABLED)) {
return;
}
if (!remoteConfigEnabled) {
log.warn("Cannot enable Dynamic Instrumentation because Remote Configuration is not enabled");
return;
}
startDebuggerAgent(inst, scoClass, sco);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import datadog.trace.api.civisibility.telemetry.CiVisibilityMetricCollector;
import datadog.trace.api.civisibility.telemetry.tag.Command;
import datadog.trace.api.git.GitInfoProvider;
import datadog.trace.api.intake.Intake;
import datadog.trace.civisibility.ci.CIProviderInfoFactory;
import datadog.trace.civisibility.ci.env.CiEnvironment;
import datadog.trace.civisibility.ci.env.CiEnvironmentImpl;
Expand Down Expand Up @@ -84,10 +85,8 @@ public class CiVisibilityServices {
this.processHierarchy = new ProcessHierarchy();
this.config = config;
this.metricCollector = metricCollector;
this.backendApi =
new BackendApiFactory(config, sco).createBackendApi(BackendApiFactory.Intake.API);
this.ciIntake =
new BackendApiFactory(config, sco).createBackendApi(BackendApiFactory.Intake.CI_INTAKE);
this.backendApi = new BackendApiFactory(config, sco).createBackendApi(Intake.API);
this.ciIntake = new BackendApiFactory(config, sco).createBackendApi(Intake.CI_INTAKE);
this.jvmInfoFactory = new CachingJvmInfoFactory(config, new JvmInfoFactoryImpl());
this.gitClientFactory = buildGitClientFactory(config, metricCollector);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
import datadog.trace.api.civisibility.events.TestEventsHandler;
import datadog.trace.api.civisibility.telemetry.CiVisibilityMetricCollector;
import datadog.trace.api.civisibility.telemetry.NoOpMetricCollector;
import datadog.trace.api.debugger.DebuggerConfigBridge;
import datadog.trace.api.debugger.DebuggerConfigUpdate;
import datadog.trace.api.git.GitInfoProvider;
import datadog.trace.bootstrap.ContextStore;
import datadog.trace.bootstrap.instrumentation.api.AgentTracer;
Expand Down Expand Up @@ -102,6 +104,10 @@ public static void start(Instrumentation inst, SharedCommunicationObjects sco) {
inst.addTransformer(new CoverageClassTransformer(instrumentationFilter));
}

if (executionSettings.isFailedTestReplayEnabled()) {
DebuggerConfigBridge.updateConfig(new DebuggerConfigUpdate(null, true, null, null));
}

CiVisibilityCoverageServices.Child coverageServices =
new CiVisibilityCoverageServices.Child(services, repoServices, executionSettings);
TestEventsHandlerFactory testEventsHandlerFactory =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public class CiVisibilitySettings {
false,
false,
false,
false,
EarlyFlakeDetectionSettings.DEFAULT,
TestManagementSettings.DEFAULT,
null);
Expand All @@ -30,6 +31,7 @@ public class CiVisibilitySettings {
private final boolean impactedTestsDetectionEnabled;
private final boolean knownTestsEnabled;
private final boolean coverageReportUploadEnabled;
private final boolean failedTestReplayEnabled;
private final EarlyFlakeDetectionSettings earlyFlakeDetectionSettings;
private final TestManagementSettings testManagementSettings;
@Nullable private final String defaultBranch;
Expand All @@ -43,6 +45,7 @@ public class CiVisibilitySettings {
boolean impactedTestsDetectionEnabled,
boolean knownTestsEnabled,
boolean coverageReportUploadEnabled,
boolean failedTestReplayEnabled,
EarlyFlakeDetectionSettings earlyFlakeDetectionSettings,
TestManagementSettings testManagementSettings,
@Nullable String defaultBranch) {
Expand All @@ -54,6 +57,7 @@ public class CiVisibilitySettings {
this.impactedTestsDetectionEnabled = impactedTestsDetectionEnabled;
this.knownTestsEnabled = knownTestsEnabled;
this.coverageReportUploadEnabled = coverageReportUploadEnabled;
this.failedTestReplayEnabled = failedTestReplayEnabled;
this.earlyFlakeDetectionSettings = earlyFlakeDetectionSettings;
this.testManagementSettings = testManagementSettings;
this.defaultBranch = defaultBranch;
Expand Down Expand Up @@ -91,6 +95,10 @@ public boolean isCoverageReportUploadEnabled() {
return coverageReportUploadEnabled;
}

public boolean isFailedTestReplayEnabled() {
return failedTestReplayEnabled;
}

public EarlyFlakeDetectionSettings getEarlyFlakeDetectionSettings() {
return earlyFlakeDetectionSettings;
}
Expand Down Expand Up @@ -121,6 +129,7 @@ public boolean equals(Object o) {
&& impactedTestsDetectionEnabled == that.impactedTestsDetectionEnabled
&& knownTestsEnabled == that.knownTestsEnabled
&& coverageReportUploadEnabled == that.coverageReportUploadEnabled
&& failedTestReplayEnabled == that.failedTestReplayEnabled
&& Objects.equals(earlyFlakeDetectionSettings, that.earlyFlakeDetectionSettings)
&& Objects.equals(testManagementSettings, that.testManagementSettings)
&& Objects.equals(defaultBranch, that.defaultBranch);
Expand All @@ -137,6 +146,7 @@ public int hashCode() {
impactedTestsDetectionEnabled,
knownTestsEnabled,
coverageReportUploadEnabled,
failedTestReplayEnabled,
earlyFlakeDetectionSettings,
testManagementSettings,
defaultBranch);
Expand Down Expand Up @@ -165,6 +175,7 @@ public CiVisibilitySettings fromJson(Map<String, Object> json) {
getBoolean(json, "impacted_tests_enabled", false),
getBoolean(json, "known_tests_enabled", false),
getBoolean(json, "coverage_report_upload_enabled", false),
getBoolean(json, "di_enabled", false),
EarlyFlakeDetectionSettings.JsonAdapter.INSTANCE.fromJson(
(Map<String, Object>) json.get("early_flake_detection")),
TestManagementSettings.JsonAdapter.INSTANCE.fromJson(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import datadog.trace.api.civisibility.telemetry.CiVisibilityMetricCollector;
import datadog.trace.api.civisibility.telemetry.tag.CoverageEnabled;
import datadog.trace.api.civisibility.telemetry.tag.EarlyFlakeDetectionEnabled;
import datadog.trace.api.civisibility.telemetry.tag.FailedTestReplayEnabled;
import datadog.trace.api.civisibility.telemetry.tag.FlakyTestRetriesEnabled;
import datadog.trace.api.civisibility.telemetry.tag.ImpactedTestsDetectionEnabled;
import datadog.trace.api.civisibility.telemetry.tag.ItrEnabled;
Expand Down Expand Up @@ -156,6 +157,7 @@ public CiVisibilitySettings getSettings(TracerEnvironment tracerEnvironment) thr
settings.isKnownTestsEnabled() ? KnownTestsEnabled.TRUE : null,
settings.isImpactedTestsDetectionEnabled() ? ImpactedTestsDetectionEnabled.TRUE : null,
settings.getTestManagementSettings().isEnabled() ? TestManagementEnabled.TRUE : null,
settings.isFailedTestReplayEnabled() ? FailedTestReplayEnabled.SettingsMetric.TRUE : null,
settings.isGitUploadRequired() ? RequireGit.TRUE : null);

return settings;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ public class ExecutionSettings {
false,
false,
false,
false,
EarlyFlakeDetectionSettings.DEFAULT,
TestManagementSettings.DEFAULT,
null,
Expand All @@ -45,6 +46,7 @@ public class ExecutionSettings {
private final boolean flakyTestRetriesEnabled;
private final boolean impactedTestsDetectionEnabled;
private final boolean codeCoverageReportUploadEnabled;
private final boolean failedTestReplayEnabled;
@Nonnull private final EarlyFlakeDetectionSettings earlyFlakeDetectionSettings;
@Nonnull private final TestManagementSettings testManagementSettings;
@Nullable private final String itrCorrelationId;
Expand All @@ -61,6 +63,7 @@ public ExecutionSettings(
boolean flakyTestRetriesEnabled,
boolean impactedTestsDetectionEnabled,
boolean codeCoverageReportUploadEnabled,
boolean failedTestReplayEnabled,
@Nonnull EarlyFlakeDetectionSettings earlyFlakeDetectionSettings,
@Nonnull TestManagementSettings testManagementSettings,
@Nullable String itrCorrelationId,
Expand All @@ -78,6 +81,7 @@ public ExecutionSettings(
this.flakyTestRetriesEnabled = flakyTestRetriesEnabled;
this.impactedTestsDetectionEnabled = impactedTestsDetectionEnabled;
this.codeCoverageReportUploadEnabled = codeCoverageReportUploadEnabled;
this.failedTestReplayEnabled = failedTestReplayEnabled;
this.earlyFlakeDetectionSettings = earlyFlakeDetectionSettings;
this.testManagementSettings = testManagementSettings;
this.itrCorrelationId = itrCorrelationId;
Expand Down Expand Up @@ -115,6 +119,7 @@ private ExecutionSettings(
boolean flakyTestRetriesEnabled,
boolean impactedTestsDetectionEnabled,
boolean codeCoverageReportUploadEnabled,
boolean failedTestReplayEnabled,
@Nonnull EarlyFlakeDetectionSettings earlyFlakeDetectionSettings,
@Nonnull TestManagementSettings testManagementSettings,
@Nullable String itrCorrelationId,
Expand All @@ -129,6 +134,7 @@ private ExecutionSettings(
this.flakyTestRetriesEnabled = flakyTestRetriesEnabled;
this.impactedTestsDetectionEnabled = impactedTestsDetectionEnabled;
this.codeCoverageReportUploadEnabled = codeCoverageReportUploadEnabled;
this.failedTestReplayEnabled = failedTestReplayEnabled;
this.earlyFlakeDetectionSettings = earlyFlakeDetectionSettings;
this.testManagementSettings = testManagementSettings;
this.itrCorrelationId = itrCorrelationId;
Expand Down Expand Up @@ -167,6 +173,10 @@ public boolean isCodeCoverageReportUploadEnabled() {
return codeCoverageReportUploadEnabled;
}

public boolean isFailedTestReplayEnabled() {
return failedTestReplayEnabled;
}

@Nonnull
public EarlyFlakeDetectionSettings getEarlyFlakeDetectionSettings() {
return earlyFlakeDetectionSettings;
Expand Down Expand Up @@ -254,6 +264,7 @@ public boolean equals(Object o) {
&& flakyTestRetriesEnabled == that.flakyTestRetriesEnabled
&& impactedTestsDetectionEnabled == that.impactedTestsDetectionEnabled
&& codeCoverageReportUploadEnabled == that.codeCoverageReportUploadEnabled
&& failedTestReplayEnabled == that.failedTestReplayEnabled
&& Objects.equals(earlyFlakeDetectionSettings, that.earlyFlakeDetectionSettings)
&& Objects.equals(testManagementSettings, that.testManagementSettings)
&& Objects.equals(itrCorrelationId, that.itrCorrelationId)
Expand All @@ -273,6 +284,7 @@ public int hashCode() {
flakyTestRetriesEnabled,
impactedTestsDetectionEnabled,
codeCoverageReportUploadEnabled,
failedTestReplayEnabled,
earlyFlakeDetectionSettings,
testManagementSettings,
itrCorrelationId,
Expand All @@ -291,6 +303,7 @@ public static class Serializer {
private static final int FLAKY_TEST_RETRIES_ENABLED_FLAG = 8;
private static final int IMPACTED_TESTS_DETECTION_ENABLED_FLAG = 16;
private static final int CODE_COVERAGE_REPORT_UPLOAD_ENABLED_FLAG = 32;
private static final int FAILED_TEST_REPLAY_ENABLED_FLAG = 64;

public static ByteBuffer serialize(ExecutionSettings settings) {
datadog.trace.civisibility.ipc.serialization.Serializer s =
Expand All @@ -307,7 +320,8 @@ public static ByteBuffer serialize(ExecutionSettings settings) {
: 0)
| (settings.codeCoverageReportUploadEnabled
? CODE_COVERAGE_REPORT_UPLOAD_ENABLED_FLAG
: 0));
: 0)
| (settings.failedTestReplayEnabled ? FAILED_TEST_REPLAY_ENABLED_FLAG : 0));
s.write(flags);

EarlyFlakeDetectionSettings.Serializer.serialize(s, settings.earlyFlakeDetectionSettings);
Expand Down Expand Up @@ -348,6 +362,7 @@ public static ExecutionSettings deserialize(ByteBuffer buffer) {
boolean impactedTestsDetectionEnabled = (flags & IMPACTED_TESTS_DETECTION_ENABLED_FLAG) != 0;
boolean codeCoverageReportUploadEnabled =
(flags & CODE_COVERAGE_REPORT_UPLOAD_ENABLED_FLAG) != 0;
boolean failedTestReplayEnabled = (flags & FAILED_TEST_REPLAY_ENABLED_FLAG) != 0;

EarlyFlakeDetectionSettings earlyFlakeDetectionSettings =
EarlyFlakeDetectionSettings.Serializer.deserialize(buffer);
Expand Down Expand Up @@ -391,6 +406,7 @@ public static ExecutionSettings deserialize(ByteBuffer buffer) {
flakyTestRetriesEnabled,
impactedTestsDetectionEnabled,
codeCoverageReportUploadEnabled,
failedTestReplayEnabled,
earlyFlakeDetectionSettings,
testManagementSettings,
itrCorrelationId,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,11 @@ private Map<String, ExecutionSettings> doCreate(
settings,
CiVisibilitySettings::isCoverageReportUploadEnabled,
Config::isCiVisibilityCodeCoverageReportUploadEnabled);
boolean failedTestReplayEnabled =
isFeatureEnabled(
settings,
CiVisibilitySettings::isFailedTestReplayEnabled,
Config::isCiVisibilityFailedTestReplayEnabled);

TestManagementSettings testManagementSettings = getTestManagementSettings(settings);

Expand All @@ -195,7 +200,8 @@ private Map<String, ExecutionSettings> doCreate(
+ "Known tests marking - {},\n"
+ "Auto test retries - {},\n"
+ "Test Management - {},\n"
+ "Code coverage report upload - {}",
+ "Code coverage report upload - {},\n"
+ "Failed Test Replay - {}",
repositoryRoot,
tracerEnvironment.getConfigurations().getRuntimeName(),
tracerEnvironment.getConfigurations().getRuntimeVersion(),
Expand All @@ -208,7 +214,8 @@ private Map<String, ExecutionSettings> doCreate(
knownTestsRequest,
flakyTestRetriesEnabled,
testManagementSettings.isEnabled(),
codeCoverageReportUpload);
codeCoverageReportUpload,
failedTestReplayEnabled);

Future<SkippableTests> skippableTestsFuture =
executor.submit(() -> getSkippableTests(tracerEnvironment, itrEnabled));
Expand Down Expand Up @@ -261,6 +268,7 @@ private Map<String, ExecutionSettings> doCreate(
flakyTestRetriesEnabled,
impactedTestsEnabled,
codeCoverageReportUpload,
failedTestReplayEnabled,
earlyFlakeDetectionEnabled
? settings.getEarlyFlakeDetectionSettings()
: EarlyFlakeDetectionSettings.DEFAULT,
Expand Down
Loading