Skip to content

Commit 55104e1

Browse files
authored
CBG-1423: Enable GSI by default for integration tests (#7939)
1 parent ea954fd commit 55104e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

base/util_testing.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,8 +275,8 @@ func TestsDisableGSI() bool {
275275
return true
276276
}
277277

278-
// Default to disabling GSI, but allow with SG_TEST_USE_GSI=true
279-
useGSI := false
278+
// Default to enable GSI, but disable with SG_TEST_USE_GSI=false
279+
useGSI := true
280280
if envUseGSI := os.Getenv(TestEnvSyncGatewayDisableGSI); envUseGSI != "" {
281281
useGSI, _ = strconv.ParseBool(envUseGSI)
282282
}

0 commit comments

Comments
 (0)