File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
google-cloud-spanner/src/main/java/com/google/cloud/spanner/connection Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -186,11 +186,13 @@ public class ConnectionProperties {
186
186
static final ConnectionProperty <Boolean > ATTEMPT_DIRECT_PATH =
187
187
create (
188
188
"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." ,
194
196
false ,
195
197
BOOLEANS ,
196
198
BooleanConverter .INSTANCE ,
You can’t perform that action at this time.
0 commit comments