Skip to content

Commit 771fa81

Browse files
Set default Attempt to Fix retries to 20 if none provided from the backend (#8615)
1 parent 51813bd commit 771fa81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dd-java-agent/agent-ci-visibility/src/main/java/datadog/trace/civisibility/config/TestManagementSettings.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public TestManagementSettings fromJson(Map<String, Object> json) {
8787

8888
return new TestManagementSettings(
8989
enabled != null ? enabled : false,
90-
attemptToFixRetries != null ? attemptToFixRetries.intValue() : -1);
90+
attemptToFixRetries != null ? attemptToFixRetries.intValue() : 20);
9191
}
9292
}
9393
}

0 commit comments

Comments
 (0)