Skip to content

Commit bc4b1ed

Browse files
committed
Fix copy constructor not copying tracing policy - fixes #1452
1 parent 28510ef commit bc4b1ed

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

vertx-sql-client/src/main/java/io/vertx/sqlclient/SqlConnectOptions.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ public SqlConnectOptions(SqlConnectOptions other) {
107107
if (other.properties != null) {
108108
this.properties = new HashMap<>(other.properties);
109109
}
110+
this.tracingPolicy = other.tracingPolicy;
110111
}
111112

112113
/**

0 commit comments

Comments
 (0)