We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c248b4c commit 639ccdfCopy full SHA for 639ccdf
internal/validators/validators.go
@@ -58,7 +58,7 @@ func ValidateServerJSON(serverJSON *apiv0.ServerJSON) error {
58
return fmt.Errorf("$schema field is required")
59
}
60
if !strings.Contains(serverJSON.Schema, model.CurrentSchemaVersion) {
61
- return fmt.Errorf("schema version %s is not supported. Please use schema version %s or later", serverJSON.Schema, model.CurrentSchemaVersion)
+ return fmt.Errorf("schema version %s is not supported. Please use schema version %s", serverJSON.Schema, model.CurrentSchemaVersion)
62
63
64
// Validate server name exists and format
0 commit comments