Skip to content

Commit

Permalink
Merge pull request quarkusio#43416 from danielsoro/quarkus-42563
Browse files Browse the repository at this point in the history
Deprecate quarkus.datasource.jdbc.tracing
  • Loading branch information
brunobat authored Sep 25, 2024
2 parents 685cdea + 2748015 commit e030b32
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,10 @@ public interface DataSourceJdbcRuntimeConfig {

/**
* Enable JDBC tracing.
*
* @deprecated in favor of OpenTelemetry {@link #telemetry()}
*/
@Deprecated(forRemoval = true, since = "3.16")
DataSourceJdbcTracingRuntimeConfig tracing();

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@
import io.quarkus.runtime.annotations.ConfigGroup;
import io.smallrye.config.WithDefault;

/**
* @deprecated in favor of OpenTelemetry {@link DataSourceJdbcRuntimeConfig#telemetry()}
*/
@ConfigGroup
@Deprecated(forRemoval = true, since = "3.16")
public interface DataSourceJdbcTracingRuntimeConfig {

/**
Expand Down

0 comments on commit e030b32

Please sign in to comment.