Closed dylandepass closed 3 years ago
@tardieu -- any objection to merging this PR?
Docs state it must be true
https://github.com/apache/openwhisk/blob/master/docs/annotations.md#annotations-specific-to-web-actions, and code reads the value as a Boolean https://github.com/apache/openwhisk/blob/9134a03c37f9be104cfc3523748ea6b8cfbfea38/core/controller/src/main/scala/org/apache/openwhisk/core/controller/WebActions.scala#L741.
going to close & reopen to get a run on travis-ci.com
Currently if you try and use a boolean valued annotation with the deploy command the value is treated as a string and not a boolean.
For example
Results in the web-export being set to 'true' and not the boolean value true. The web-export annotation does not work if the value is set to 'true'
This PR attempts to fix that.