Skip to content

Commit

Permalink
chore: rename tcpConnectonFactory to tcpConnectionFactory (#1130)
Browse files Browse the repository at this point in the history
  • Loading branch information
shubha-rajan authored Jan 23, 2023
1 parent 932f21d commit e4f7e82
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ private static Function<SslContextBuilder, SslContextBuilder> createSslCustomize
* Creates a ConnectionFactory that creates an SSL connection over TCP, using driver-specific
* options.
*/
abstract ConnectionFactory tcpConnectonFactory(
abstract ConnectionFactory tcpConnectionFactory(
Builder optionBuilder,
Function<SslContextBuilder, SslContextBuilder> customizer,
String csqlHostName);
Expand Down Expand Up @@ -130,7 +130,7 @@ private ConnectionFactory createFactory(
if (socket != null) {
return socketConnectionFactory(optionBuilder, socket);
}
return tcpConnectonFactory(optionBuilder, createSslCustomizer(connectionName, enableIamAuth),
return tcpConnectionFactory(optionBuilder, createSslCustomizer(connectionName, enableIamAuth),
connectionName);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ boolean supportedProtocol(String protocol) {
}

@Override
ConnectionFactory tcpConnectonFactory(
ConnectionFactory tcpConnectionFactory(
Builder optionBuilder,
Function<SslContextBuilder, SslContextBuilder> customizer,
String csqlHostName) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ boolean supportedProtocol(String protocol) {
}

@Override
ConnectionFactory tcpConnectonFactory(
ConnectionFactory tcpConnectionFactory(
Builder optionBuilder,
Function<SslContextBuilder, SslContextBuilder> customizer,
String csqlHostName) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ boolean supportedProtocol(String protocol) {
}

@Override
ConnectionFactory tcpConnectonFactory(
ConnectionFactory tcpConnectionFactory(
Builder optionBuilder,
Function<SslContextBuilder, SslContextBuilder> customizer,
String csqlHostName) {
Expand Down

0 comments on commit e4f7e82

Please sign in to comment.