We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f118fc5 commit f2827f6Copy full SHA for f2827f6
google-cloud-spanner/src/main/java/com/google/cloud/spanner/connection/ConnectionOptions.java
@@ -1005,7 +1005,7 @@ static String determineHost(
1005
// The leading '//' is already included in the regex for the connection URL, so we don't need
1006
// to add the leading '//' to the host name here.
1007
host = matcher.group(Builder.HOST_GROUP);
1008
- if (ConnectionOptions.Builder.EXTERNAL_HOST_FORMAT.equals(matcher.pattern().pattern())
+ if (Builder.EXTERNAL_HOST_FORMAT.equals(matcher.pattern().pattern())
1009
&& !host.matches(".*:\\d+$")) {
1010
host = String.format("%s:15000", host);
1011
}
0 commit comments