KeonHee opened a new issue #296: [Feature Request] Namespace option is required for standalone command execution URL: https://github.com/apache/incubator-openwhisk-cli/issues/296 We are deploying shared packages to users with a CLI. However, deployment sometimes fails because of the property already set up on the server. It would be more convenient if we could set namespace and authentication independently whenever we run a command. ## Failure Case 1. Property already set - Namespace : `abc` - Auth: ${ABC_AUTH} 2. Update action on `def` namespace ```bash wsk action update test --auth ${DEF_AUTH} # fail ``` ## Example after modification 1. Property already set - Namespace : `abc` - Auth: ${ABC_AUTH} 2. Update action on `def` namespace ```bash wsk action update test --auth ${DEF_AUTH} --namespace def # success!! ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
