Skip to content

Commit a381da8

Browse files
committed
Ensure schema is rendered inline
$refs were not being resolved.
1 parent 6b93301 commit a381da8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parameters/validate_parameter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func ValidateParameterSchema(
7575
var validationErrors []*errors.ValidationError
7676

7777
// 1. build a JSON render of the schema.
78-
renderedSchema, _ := schema.Render()
78+
renderedSchema, _ := schema.RenderInline()
7979
jsonSchema, _ := utils.ConvertYAMLtoJSON(renderedSchema)
8080

8181
// 2. decode the object into a json blob.

0 commit comments

Comments
 (0)