mirror of https://github.com/knative/client.git
While testing I specified this on the `kn` command line: ``` ./kn service create echo --concurrency-limit=1 --concurrency-target=1 --env foo=bar --limits-cpu=1000m --limits-memory=1024m --max-scale=1 --min-scale=1 --port=9999 --requests-cpu=250m --requests-memory=64mi --image duglin/echo ``` and it returned: ``` unable to parse quantity's suffix ``` I had no idea which value it didn't like. So this PR makes it so the output is now this: ``` Error parsing "64mi": unable to parse quantity's suffix ``` Still not perfect since I still had to think way too hard to realize that it didn't like the lower-case `m`, but that's a different issue. Signed-off-by: Doug Davis <dug@us.ibm.com> |
||
|---|---|---|
| .. | ||
| configuration_edit_flags.go | ||
| create.go | ||
| create_mock_test.go | ||
| create_test.go | ||
| delete.go | ||
| delete_test.go | ||
| describe.go | ||
| describe_test.go | ||
| human_readable_flags.go | ||
| list.go | ||
| list_flags.go | ||
| list_flags_test.go | ||
| list_mock_test.go | ||
| list_test.go | ||
| service.go | ||
| service_test.go | ||
| service_update_mock_test.go | ||
| update.go | ||
| update_test.go | ||