Skip to content

Commit

Permalink
Added new fields to new copy constructor (from: apache#38521)
Browse files Browse the repository at this point in the history
  • Loading branch information
prmoore77 committed Nov 6, 2023
1 parent 9697e50 commit 1975786
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,9 @@ private Builder(Builder original) {
this.useEncryption = original.useEncryption;
this.disableCertificateVerification = original.disableCertificateVerification;
this.useSystemTrustStore = original.useSystemTrustStore;
this.tlsRootCertificatesPath = original.tlsRootCertificatesPath;
this.clientCertificatePath = original.clientCertificatePath;
this.clientKeyPath = original.clientKeyPath;
this.allocator = original.allocator;
}

Expand Down

0 comments on commit 1975786

Please sign in to comment.