Skip to content

Commit e4f7e82

Browse files
authored
chore: rename tcpConnectonFactory to tcpConnectionFactory (#1130)
1 parent 932f21d commit e4f7e82

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

r2dbc/core/src/main/java/com/google/cloud/sql/core/GcpConnectionFactoryProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ private static Function<SslContextBuilder, SslContextBuilder> createSslCustomize
7070
* Creates a ConnectionFactory that creates an SSL connection over TCP, using driver-specific
7171
* options.
7272
*/
73-
abstract ConnectionFactory tcpConnectonFactory(
73+
abstract ConnectionFactory tcpConnectionFactory(
7474
Builder optionBuilder,
7575
Function<SslContextBuilder, SslContextBuilder> customizer,
7676
String csqlHostName);
@@ -130,7 +130,7 @@ private ConnectionFactory createFactory(
130130
if (socket != null) {
131131
return socketConnectionFactory(optionBuilder, socket);
132132
}
133-
return tcpConnectonFactory(optionBuilder, createSslCustomizer(connectionName, enableIamAuth),
133+
return tcpConnectionFactory(optionBuilder, createSslCustomizer(connectionName, enableIamAuth),
134134
connectionName);
135135
}
136136

r2dbc/mysql/src/main/java/com/google/cloud/sql/core/GcpConnectionFactoryProviderMysql.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ boolean supportedProtocol(String protocol) {
4747
}
4848

4949
@Override
50-
ConnectionFactory tcpConnectonFactory(
50+
ConnectionFactory tcpConnectionFactory(
5151
Builder optionBuilder,
5252
Function<SslContextBuilder, SslContextBuilder> customizer,
5353
String csqlHostName) {

r2dbc/postgres/src/main/java/com/google/cloud/sql/core/GcpConnectionFactoryProviderPostgres.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ boolean supportedProtocol(String protocol) {
5252
}
5353

5454
@Override
55-
ConnectionFactory tcpConnectonFactory(
55+
ConnectionFactory tcpConnectionFactory(
5656
Builder optionBuilder,
5757
Function<SslContextBuilder, SslContextBuilder> customizer,
5858
String csqlHostName) {

r2dbc/sqlserver/src/main/java/com/google/cloud/sql/core/GcpConnectionFactoryProviderMssql.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ boolean supportedProtocol(String protocol) {
4646
}
4747

4848
@Override
49-
ConnectionFactory tcpConnectonFactory(
49+
ConnectionFactory tcpConnectionFactory(
5050
Builder optionBuilder,
5151
Function<SslContextBuilder, SslContextBuilder> customizer,
5252
String csqlHostName) {

0 commit comments

Comments
 (0)