This is an automated email from the ASF dual-hosted git repository. csantanapr pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-cli.git
commit b2595ec85d3ff66100b7db6c8c41056f592cfde9 Author: Adnan Baruni <[email protected]> AuthorDate: Fri Nov 17 20:14:16 2017 -0600 fix flags.common.param --- commands/trigger.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/trigger.go b/commands/trigger.go index 5194397..5f8a746 100644 --- a/commands/trigger.go +++ b/commands/trigger.go @@ -282,9 +282,9 @@ var triggerUpdateCmd = &cobra.Command{ if len(fullFeedName) > 0 { fullTriggerName := fmt.Sprintf("/%s/%s", qualifiedName.GetNamespace(), qualifiedName.GetEntityName()) - flags.common.param = append(flags.common.param, getFormattedJSON(FEED_LIFECYCLE_EVENT, FEED_UPDATE)) - flags.common.param = append(flags.common.param, getFormattedJSON(FEED_TRIGGER_NAME, fullTriggerName)) - flags.common.param = append(flags.common.param, getFormattedJSON(FEED_AUTH_KEY, Client.Config.AuthToken)) + Flags.common.param = append(Flags.common.param, getFormattedJSON(FEED_LIFECYCLE_EVENT, FEED_UPDATE)) + Flags.common.param = append(Flags.common.param, getFormattedJSON(FEED_TRIGGER_NAME, fullTriggerName)) + Flags.common.param = append(Flags.common.param, getFormattedJSON(FEED_AUTH_KEY, Client.Config.AuthToken)) // Invoke the specified feed action to configure the trigger feed err = configureFeed(qualifiedName.GetEntityName(), fullFeedName) -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
