Skip to content

Commit

Permalink
playground: only pull nightly from cluster version (#2364)
Browse files Browse the repository at this point in the history
  • Loading branch information
xhebox authored Feb 2, 2024
1 parent 79c584f commit 38b6c96
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/playground/playground.go
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,9 @@ func (p *Playground) bindVersion(comp string, version string) (bindVersion strin
default:
}
if bindVersion == "" {
bindVersion = version
if version == "nightly" {
bindVersion = version
}
}
return
}
Expand Down

0 comments on commit 38b6c96

Please sign in to comment.