Skip to content

Commit 98fe81a

Browse files
JCBC-2189 Promote App Telemetry config options from Volatile to Committed
Replace the @Stability.Volatile to @Stability.Committed annotations from CoreEnvironment.appTelemetryEndpoint() and .appTelemetryDisabled(). Change-Id: I53a16e4da81c7cee107accd1aadd9e7722f9f49f Reviewed-on: https://review.couchbase.org/c/couchbase-jvm-clients/+/230621 Tested-by: Build Bot <build@couchbase.com> Reviewed-by: Michael Reiche <michael.reiche@couchbase.com>
1 parent 3bbdca2 commit 98fe81a

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

‎core-io/src/main/java/com/couchbase/client/core/env/CoreEnvironment.java‎

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -477,15 +477,13 @@ public CoreTransactionsSchedulers transactionsSchedulers() {
477477
*
478478
* @see #appTelemetryDisabled
479479
*/
480-
@Stability.Volatile
481480
public @Nullable URI appTelemetryEndpoint() {
482481
return appTelemetryEndpoint;
483482
}
484483

485484
/**
486485
* If true, the SDK should neither capture nor report application telemetry information.
487486
*/
488-
@Stability.Volatile
489487
public boolean appTelemetryDisabled() {
490488
return appTelemetryDisabled;
491489
}
@@ -1266,7 +1264,6 @@ public SELF preferredServerGroup(final @Nullable String preferredServerGroup) {
12661264
* indicating where the SDK should report application telemetry, or null to let Couchbase Server decide.
12671265
* @return this {@link Builder} for chaining purposes.
12681266
*/
1269-
@Stability.Volatile
12701267
public SELF appTelemetryEndpoint(final @Nullable String appTelemetryEndpoint) {
12711268
if (appTelemetryEndpoint == null) {
12721269
this.appTelemetryEndpoint = null;
@@ -1290,7 +1287,6 @@ public SELF appTelemetryEndpoint(final @Nullable String appTelemetryEndpoint) {
12901287
*
12911288
* @return this {@link Builder} for chaining purposes.
12921289
*/
1293-
@Stability.Volatile
12941290
public SELF disableAppTelemetry(boolean disable) {
12951291
this.disableAppTelemetry = disable;
12961292
return self();

0 commit comments

Comments
 (0)