Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions integration-tests/deploy/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"os"
"strconv"
"strings"
"testing"
)

var (
Expand Down Expand Up @@ -214,6 +215,9 @@ func ValidateGeth() (*GethConfig, error) {
func ValidateDevnet() (*DevnetConfig, error) {
var errs []string
name := "chainlink-aptos.devnet"
if testing.Testing() {
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suppose it doesn't need to be conditional on testing, though this is sufficient.

name += "-" + strconv.Itoa(os.Getpid())
}

devnetImage, ok := os.LookupEnv("DEVNET_IMAGE")

Expand Down
2 changes: 1 addition & 1 deletion scripts/devnet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

dir="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"

container_name="chainlink-aptos.devnet"
container_name="chainlink-aptos.devnet-$$"
container_image="aptoslabs/tools:aptos-node-v1.34.3-hotfix"

if [ -n "${CUSTOM_IMAGE:-}" ]; then
Expand Down
Loading