Skip to content

Commit

Permalink
Fix missing container env
Browse files Browse the repository at this point in the history
  • Loading branch information
kalverra committed Jan 8, 2024
1 parent 9624a48 commit e10ed65
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions integration-tests/docker/test_env/cl_node.go
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,7 @@ func (n *ClNode) getContainerRequest(secrets string) (
Name: n.ContainerName,
Image: fmt.Sprintf("%s:%s", n.ContainerImage, n.ContainerVersion),
ExposedPorts: []string{"6688/tcp"},
Env: n.ContainerEnvs,
Entrypoint: []string{"chainlink",
"-c", configPath,
"-s", secretsPath,
Expand Down
3 changes: 2 additions & 1 deletion integration-tests/smoke/ocr2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ import (
"github.com/smartcontractkit/chainlink-testing-framework/logging"
"github.com/smartcontractkit/chainlink-testing-framework/utils/testcontext"

"github.com/smartcontractkit/chainlink/v2/core/config/env"

"github.com/smartcontractkit/chainlink/integration-tests/actions"
"github.com/smartcontractkit/chainlink/integration-tests/contracts"
"github.com/smartcontractkit/chainlink/integration-tests/docker/test_env"
"github.com/smartcontractkit/chainlink/integration-tests/types/config/node"
"github.com/smartcontractkit/chainlink/v2/core/config/env"
)

// Tests a basic OCRv2 median feed
Expand Down

0 comments on commit e10ed65

Please sign in to comment.