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 ea954fd commit 6398025Copy full SHA for 6398025
base/util_testing.go
@@ -275,8 +275,8 @@ func TestsDisableGSI() bool {
275
return true
276
}
277
278
- // Default to disabling GSI, but allow with SG_TEST_USE_GSI=true
279
- useGSI := false
+ // Default to enable GSI, but disable with SG_TEST_USE_GSI=false
+ useGSI := true
280
if envUseGSI := os.Getenv(TestEnvSyncGatewayDisableGSI); envUseGSI != "" {
281
useGSI, _ = strconv.ParseBool(envUseGSI)
282
0 commit comments