dubeejw commented on a change in pull request #2326: (WIP) Alphabetize
URL:
https://github.com/apache/incubator-openwhisk/pull/2326#discussion_r120993154
##########
File path: tools/cli/go-whisk/whisk/action.go
##########
@@ -22,25 +22,32 @@ import (
"errors"
"net/url"
"../wski18n"
+ "strings"
+
+
+
+
+
)
type ActionService struct {
client *Client
}
type Action struct {
- Namespace string `json:"namespace,omitempty"`
Name string `json:"name,omitempty"`
+ Namespace string `json:"namespace,omitempty"`
Version string `json:"version,omitempty"`
Exec *Exec `json:"exec,omitempty"`
- Annotations KeyValueArr `json:"annotations,omitempty"`
Parameters KeyValueArr `json:"parameters,omitempty"`
+ Annotations KeyValueArr `json:"annotations,omitempty"`
Limits *Limits `json:"limits,omitempty"`
Error string `json:"error,omitempty"`
Code int `json:"code,omitempty"`
Publish *bool `json:"publish,omitempty"`
}
+
Review comment:
Remove extra new line.
----------------------------------------------------------------
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