Skip to content

Commit

Permalink
Polishing.
Browse files Browse the repository at this point in the history
Fix since version.

[#634]
  • Loading branch information
mp911de committed Feb 15, 2024
1 parent 24af094 commit cb7033e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -885,7 +885,7 @@ public Builder sslEngineCustomizer(Function<SSLEngine, SSLEngine> sslEngineCusto
* @param sslParametersFactory customizer function
* @return this {@link Builder}
* @throws IllegalArgumentException if {@code sslParametersFactory} is {@code null}
* @since 1.0.4
* @since 1.0.5
*/
public Builder sslParameters(Function<SocketAddress, SSLParameters> sslParametersFactory) {
this.sslParametersFactory = Assert.requireNonNull(sslParametersFactory, "sslParametersFactory must not be null");
Expand All @@ -898,7 +898,7 @@ public Builder sslParameters(Function<SocketAddress, SSLParameters> sslParameter
* @param sslSni whether to indicate the hostname and port via SNI. Sets {@link SSLParameters#setServerNames(List)} on the {@link SSLParameters} instance provided by
* {@link #sslParameters(Function)}.
* @return this {@link Builder}
* @since 1.0.4
* @since 1.0.5
*/
public Builder sslSni(boolean sslSni) {
this.sslSni = sslSni;
Expand Down
Expand Up @@ -224,7 +224,7 @@ public final class PostgresqlConnectionFactoryProvider implements ConnectionFact
/**
* Configure whether to use SNI on SSL connections. Enabled by default.
*
* @since 1.0.4
* @since 1.0.5
*/
public static final Option<Boolean> SSL_SNI = Option.valueOf("sslSni");

Expand Down

0 comments on commit cb7033e

Please sign in to comment.