Skip to content

Commit bca973b

Browse files
set default attempt to fix retries to 20 if not provided by backend
1 parent dfe3134 commit bca973b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
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)