Skip to content

Commit

Permalink
🐛 Fix QDNETC and QDCL versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tiulpin committed May 14, 2024
1 parent 30c15cb commit 812df7a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions platform/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,9 @@ var AllNativeCodes = []string{QDNET}

func Image(code string) string {
if val, ok := DockerImageMap[code]; ok {
if val == QDNETC || val == QDCL {
return val + releaseVersion + "-eap"
}
return val + releaseVersion
} else {
log.Fatal("Unknown code: " + code)
Expand Down

0 comments on commit 812df7a

Please sign in to comment.