Skip to content

Commit

Permalink
ensure controller version is >=2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rschmied committed Dec 2, 2022
1 parent fcb50b2 commit c701a0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type systemVersion struct {
Ready bool `json:"ready"`
}

const versionConstraint = ">=2.3.0,<2.5.0"
const versionConstraint = ">=2.4.0,<2.6.0"

func versionError(got string) error {
return fmt.Errorf("server not compatible, want %s, got %s", versionConstraint, got)
Expand Down

0 comments on commit c701a0f

Please sign in to comment.