Skip to content

Commit 151614d

Browse files
committed
rename CHAINLINK_IMAGE to CTF_CHAINLINK_IMAGE
1 parent 702527f commit 151614d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

book/src/framework/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
| LOKI_BASIC_AUTH | Basic auth in format $user:$password | `$user:$password` | - | 🚫 |
1313
| RESTY_DEBUG | Log all Resty client HTTP calls | `true`, `false` | `false` | 🚫 |
1414
| CTF_IGNORE_CRITICAL_LOGS | Ignore all logs that has CRIT,FATAL or PANIC levels (Chainlink nodes only!) | `true`, `false` | `false` | 🚫 |
15-
| CHAINLINK_IMAGE | Flag to override Chainlink Docker image in format $repository:$tag | $repository:$tag | - | 🚫 |
15+
| CTF_CHAINLINK_IMAGE | Flag to override Chainlink Docker image in format $repository:$tag | $repository:$tag | - | 🚫 |

framework/components/simple_node_set/node_set.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ func sharedDBSetup(in *Input, bcOut *blockchain.Output) (*Output, error) {
8080
}
8181
nodeOuts := make([]*clnode.Output, 0)
8282

83-
envImage := os.Getenv("CHAINLINK_IMAGE")
83+
envImage := os.Getenv("CTF_CHAINLINK_IMAGE")
8484

8585
// to make it easier for chaos testing we use static ports
8686
// there is no need to check them in advance since testcontainers-go returns a nice error

0 commit comments

Comments
 (0)