Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump core to the stable v21 build. #5323

Merged
merged 10 commits into from
Jun 4, 2024
Prev Previous commit
Next Next commit
captive core use_db flag default to true for integration tests
should always be set to true, that flag is deprecated and defaulted to true, there is no test paths validating it being false.
  • Loading branch information
sreuland committed May 24, 2024
commit eba82759ce228fadf6f601729f2dd78ece3667b8
2 changes: 1 addition & 1 deletion services/horizon/internal/test/integration/integration.go
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ func (i *Test) getDefaultIngestArgs(postgres *dbtest.DB) map[string]string {
"stellar-core-binary-path": i.coreConfig.binaryPath,
"captive-core-config-path": i.coreConfig.configPath,
"captive-core-http-port": "21626",
"captive-core-use-db": strconv.FormatBool(i.coreConfig.useDB),
"captive-core-use-db": "true",
"captive-core-storage-path": i.coreConfig.storagePath,
"ingest": "true"})
}
Expand Down
Loading