Skip to content

Commit

Permalink
Manually start localstack.
Browse files Browse the repository at this point in the history
Signed-off-by: Cody Littley <cody@eigenlabs.org>
  • Loading branch information
cody-littley committed Jan 2, 2025
1 parent ad89396 commit a2b602e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion inabox/deploy/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ func (env *Config) generateOperatorVars(ind int, name, key, churnerUrl, logPath,
NODE_NUM_CONFIRMATIONS: "0",
NODE_ONCHAIN_METRICS_INTERVAL: "-1",
NODE_ENABLE_V2: "true",
NODE_DISABLE_DISPERSAL_AUTHENTICATION: "false",
NODE_DISABLE_DISPERSAL_AUTHENTICATION: "true",
}

env.applyDefaults(&v, "NODE", "opr", ind)
Expand Down
7 changes: 7 additions & 0 deletions operators/churner/tests/churner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,13 @@ func setup(m *testing.M) {
}
}

// TODO this probably doesn't belong here
localStackPort := "4570"
_, _, err := deploy.StartDockertestWithLocalstackContainer(localStackPort)
if err != nil {
log.Panicf("Failed to start dockertest with localstack container: %v", err)
}

testConfig = deploy.NewTestConfig(testName, rootPath)
testConfig.Deployers[0].DeploySubgraphs = false

Expand Down

0 comments on commit a2b602e

Please sign in to comment.