b16a4ce465
We will now only accept the string values "False" or "True". Previously any given value was interpreted as a string and thus True. Closes-Bug: #1666565 Change-Id: Ibd105c881dbe16cd4516bfb775c8f5f43c961b45
9 lines
364 B
YAML
9 lines
364 B
YAML
---
|
|
fixes:
|
|
- |
|
|
The header X-Target-Insecure previously accepted any string and used it
|
|
for comparisons. This meant unless it was empty (or not provided) it would
|
|
always evaluate as True. This change makes the validation stricter, only
|
|
accepting "True" and "False" and converting these to boolean values. Any
|
|
other value will return an error.
|