Skip to content

Commit

Permalink
hubble-469: start quickstart with '--limits default' to disable unnee…
Browse files Browse the repository at this point in the history
…ded(for test purposes) soroban upgrades to local network
  • Loading branch information
sreuland committed Jul 5, 2024
1 parent eb1976a commit 87fb038
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion exp/services/ledgerexporter/internal/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,9 @@ func (s *LedgerExporterTestSuite) mustStartCore(t *testing.T, quickstartImage st
resp, err := s.dockerCli.ContainerCreate(s.ctx,
&container.Config{
Image: quickstartImage,
Cmd: []string{"--enable", "core", "--local"},
// only run tge core service(no horizon, rpc, etc) and don't spend any time upgrading
// the core with newer soroban limits
Cmd: []string{"--enable", "core", "--limits", "default", "--local"},
ExposedPorts: nat.PortSet{
nat.Port("1570/tcp"): {},

Check failure on line 281 in exp/services/ledgerexporter/internal/integration_test.go

View workflow job for this annotation

GitHub Actions / golangci

missing type in composite literal (typecheck)
nat.Port("11625/tcp"): {},

Check failure on line 282 in exp/services/ledgerexporter/internal/integration_test.go

View workflow job for this annotation

GitHub Actions / golangci

missing type in composite literal (typecheck)
Expand Down

0 comments on commit 87fb038

Please sign in to comment.