We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6a6707 commit 24bb9eeCopy full SHA for 24bb9ee
lib/docker/test_env/parrot.go
@@ -20,7 +20,10 @@ import (
20
"github.com/smartcontractkit/chainlink-testing-framework/parrot"
21
)
22
23
-const defaultParrotImage = "kalverra/parrot"
+const (
24
+ defaultParrotImage = "kalverra/parrot"
25
+ defaultParrotVersion = "v0.5.0"
26
+)
27
28
// Parrot is a test environment component that wraps a Parrot server.
29
type Parrot struct {
@@ -124,6 +127,7 @@ func (p *Parrot) getContainerRequest() (tc.ContainerRequest, error) {
124
127
if pImage == "" || pImage == "parrot" {
125
128
pImage = defaultParrotImage
126
129
}
130
+ pImage = fmt.Sprintf("%s:%s", pImage, defaultParrotVersion)
131
132
return tc.ContainerRequest{
133
Name: p.ContainerName,
0 commit comments