From 38b6c96c2d27f16bbc7fd95644235010d319f6cc Mon Sep 17 00:00:00 2001 From: xhe Date: Fri, 2 Feb 2024 17:57:25 +0800 Subject: [PATCH] playground: only pull nightly from cluster version (#2364) --- components/playground/playground.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/playground/playground.go b/components/playground/playground.go index c177feed43..1507b083a9 100644 --- a/components/playground/playground.go +++ b/components/playground/playground.go @@ -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 }