Skip to content

Commit

Permalink
fix config schema
Browse files Browse the repository at this point in the history
  • Loading branch information
technillogue committed May 25, 2024
1 parent fe0d2db commit e07dc07
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions pkg/config/data/config_schema_v1.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,16 @@
},
"concurrency": {
"$id": "#/properties/concurrency",
"type": "number",
"description": "Allowed concurrency."
"type": "object",
"description": "This stanza configures concurrency limits",
"properties": {
"max": {
"$id": "#/properties/concurrency/properties/max",
"type": "number",
"description": "Maximum allowed concurrency. Setting this value enables concurrent predictions."
}
},
"additionalProperties": true
}
},
"additionalProperties": false
Expand Down

0 comments on commit e07dc07

Please sign in to comment.