dubeejw commented on a change in pull request #2675: Added changes for classes
and variables casing to be get exported and can be used in other places
URL:
https://github.com/apache/incubator-openwhisk/pull/2675#discussion_r140059691
##########
File path: tools/cli/go-whisk-cli/commands/package.go
##########
@@ -487,14 +487,14 @@ var packageRefreshCmd = &cobra.Command{
}
case http.StatusNotImplemented:
- whisk.Debug(whisk.DbgError, "client.Packages.Refresh() for namespace
'%s' returned 'Not Implemented' HTTP status code: %d\n",
client.Config.Namespace, resp.StatusCode)
+ whisk.Debug(whisk.DbgError, "client.Packages.Refresh() for namespace
'%s' returned 'Not Implemented' HTTP status code: %d\n",
Client.Config.Namespace, resp.StatusCode)
errStr := wski18n.T("The package refresh feature is not implemented in
the target deployment")
werr := whisk.MakeWskErrorFromWskError(errors.New(errStr), err,
whisk.EXIT_CODE_ERR_NETWORK, whisk.DISPLAY_MSG, whisk.NO_DISPLAY_USAGE)
return werr
default:
- whisk.Debug(whisk.DbgError, "client.Packages.Refresh() for namespace
'%s' returned an unexpected HTTP status code: %d\n", client.Config.Namespace,
resp.StatusCode)
+ whisk.Debug(whisk.DbgError, "client.Packages.Refresh() for namespace
'%s' returned an unexpected HTTP status code: %d\n", Client.Config.Namespace,
resp.StatusCode)
Review comment:
Update debug message.
----------------------------------------------------------------
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