style95 commented on a change in pull request #488:
URL: https://github.com/apache/openwhisk-cli/pull/488#discussion_r472023113
##########
File path: commands/action.go
##########
@@ -1305,6 +1308,7 @@ func init() {
actionUpdateCmd.Flags().StringVarP(&Flags.common.paramFile,
"param-file", "P", "", wski18n.T("`FILE` containing parameter values in JSON
format"))
actionUpdateCmd.Flags().StringVar(&Flags.action.web, WEB_FLAG, "",
wski18n.T("treat ACTION as a web action, a raw HTTP web action, or as a
standard action; yes | true = web action, raw = raw HTTP web action, no | false
= standard action"))
actionUpdateCmd.Flags().StringVar(&Flags.action.websecure,
WEB_SECURE_FLAG, "", wski18n.T("secure the web action. where `SECRET` is true,
false, or any string. Only valid when the ACTION is a web action"))
+ actionUpdateCmd.Flags().StringArrayVar(&Flags.action.delAnnotation,
"del-annotation", []string{}, wski18n.T("del annotation"))
Review comment:
```suggestion
actionUpdateCmd.Flags().StringArrayVar(&Flags.action.delAnnotation,
"del-annotation", []string{}, wski18n.T("the list of annotations to be deleted
from the action"))
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]