Skip to content

Commit

Permalink
Fix(): delete virtual cluster does nothing (regression) (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
achever1 authored Jan 8, 2025
1 parent 0d5dc6d commit 1aee1ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/gateway_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func isIdentifiedByNameAndVCluster(kind string) bool {
}

func isIdentifiedByName(kind string) bool {
return strings.Contains(strings.ToLower(kind), "vcluster") ||
return strings.Contains(strings.ToLower(kind), "virtualcluster") ||
strings.Contains(strings.ToLower(kind), "group")
}

Expand Down

0 comments on commit 1aee1ea

Please sign in to comment.