Skip to content

Commit

Permalink
Fix copy constructor not copying tracing policy
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Aug 2, 2024
1 parent 3417c5a commit 6864593
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ public SqlConnectOptions(SqlConnectOptions other) {
if (other.properties != null) {
this.properties = new HashMap<>(other.properties);
}
this.tracingPolicy = other.tracingPolicy;
this.reconnectAttempts = other.reconnectAttempts;
this.reconnectInterval = other.reconnectInterval;
ClientSSLOptions sslOptions = other.sslOptions;
Expand Down

0 comments on commit 6864593

Please sign in to comment.