Skip to content

Commit

Permalink
Merged in bugfix/SHIBUI-689 (pull request #127)
Browse files Browse the repository at this point in the history
SHIBUI-689 Added minimum to validation for http cache fields

Approved-by: Shibui Jenkins <shibui.jenkins@gmail.com>
Approved-by: Ryan Mathis <rmathis@unicon.net>
  • Loading branch information
rmathis committed Jul 26, 2018
2 parents b7d3147 + 5432183 commit 578bd18
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 578bd18

Please sign in to comment.