0

I'm following the tutorial at: https://new-console.ng.bluemix.net/docs/openwhisk/openwhisk_actions.html

problems at step 3 of tutorial:

copied and pasted command:

wsk action invoke --blocking --result hello --param name 'Bernie' --param place 'Washington, DC'

get error:

←[31merror: ←[0mInvalid argument(s): DC'. An action name is required.
Run 'wsk --help' for usage.

running the previous steps of tutorial were fine

Alex da Silva
  • 4,552
  • 2
  • 17
  • 25

1 Answers1

1

It's detecting the comma ',' in your place parameter. Try using "Washington, DC" in double quotes.

Ed Shee
  • 931
  • 1
  • 7
  • 22