Skip to content

Commit 595ffaf

Browse files
Update JDBC connection property description
1 parent 9b0c7bc commit 595ffaf

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

google-cloud-spanner/src/main/java/com/google/cloud/spanner/connection/ConnectionProperties.java

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -186,11 +186,13 @@ public class ConnectionProperties {
186186
static final ConnectionProperty<Boolean> ATTEMPT_DIRECT_PATH =
187187
create(
188188
"attemptDirectPath",
189-
"Automatically configure the connection to try to connect to the Cloud Spanner "
190-
+ "using DirectPath (true/false). Client will try to connect to Spanner directly "
191-
+ "instead of connecting to GFE(Google Front End). Directpath will work only if "
192-
+ "client is trying to establish a connect from GCP VM. Otherwise it will fallback to"
193-
+ "GFE path.",
189+
"Configure the connection to try to connect to Spanner using "
190+
+ "DirectPath (true/false). The client will try to connect to Spanner "
191+
+ "using a direct Google network connection. DirectPath will work only "
192+
+ "if the client is trying to establish a connection from a Google Cloud VM. "
193+
+ "Otherwise it will automatically fallback to the standard network path. "
194+
+ "NOTE: The default for this property is currently false, "
195+
+ "but this could be changed in the future.",
194196
false,
195197
BOOLEANS,
196198
BooleanConverter.INSTANCE,

0 commit comments

Comments
 (0)