Remove support for otel.experimental.exporter.otlp.retry.enabled (#7200)

This commit is contained in:
jack-berg 2025-03-14 13:51:46 -05:00 committed by GitHub
parent 0673fcfda5
commit 490173b0da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 7 deletions

View File

@ -134,13 +134,6 @@ public final class OtlpConfigUtil {
}
Boolean retryDisabled = config.getBoolean("otel.java.exporter.otlp.retry.disabled");
if (retryDisabled == null) {
Boolean experimentalRetryEnabled =
config.getBoolean("otel.experimental.exporter.otlp.retry.enabled");
if (experimentalRetryEnabled != null) {
retryDisabled = !experimentalRetryEnabled;
}
}
if (retryDisabled != null && retryDisabled) {
setRetryPolicy.accept(null);
}