We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0673fcf commit 490173bCopy full SHA for 490173b
exporters/otlp/all/src/main/java/io/opentelemetry/exporter/otlp/internal/OtlpConfigUtil.java
@@ -134,13 +134,6 @@ public static void configureOtlpExporterBuilder(
134
}
135
136
Boolean retryDisabled = config.getBoolean("otel.java.exporter.otlp.retry.disabled");
137
- if (retryDisabled == null) {
138
- Boolean experimentalRetryEnabled =
139
- config.getBoolean("otel.experimental.exporter.otlp.retry.enabled");
140
- if (experimentalRetryEnabled != null) {
141
- retryDisabled = !experimentalRetryEnabled;
142
- }
143
144
if (retryDisabled != null && retryDisabled) {
145
setRetryPolicy.accept(null);
146
0 commit comments