Skip to content

Commit

Permalink
SHIBUI-689 Added minimum to validation for http cache fields
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Jul 26, 2018
1 parent b12d7b7 commit 5432183
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -231,14 +231,16 @@
"title": "HTTP Max Cache Entries",
"description": "The maximum number of responses written to cache. This attribute is incompatible with httpClientRef.",
"placeholder": "",
"default": 0
"default": 0,
"minimum": 0
},
"httpMaxCacheEntrySize": {
"type": "integer",
"title": "HTTP Max Cache Entry Size",
"description": "The maximum response body size that may be cached, in bytes. This attribute is incompatible with httpClientRef.",
"placeholder": "",
"default": 0
"default": 0,
"minimum": 0
}
}
}
Expand Down

0 comments on commit 5432183

Please sign in to comment.