This is an automated email from the ASF dual-hosted git repository.
rabbah pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-openwhisk-client-go.git
The following commit(s) were added to refs/heads/master by this push:
new af04d34 Correct typo in debug statement (#115)
af04d34 is described below
commit af04d34bed2fc89f2788e521ce422a998ce04e7a
Author: James Dubee <[email protected]>
AuthorDate: Tue Feb 12 17:11:16 2019 -0500
Correct typo in debug statement (#115)
---
whisk/client.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/whisk/client.go b/whisk/client.go
index 79dda39..0ab1ccb 100644
--- a/whisk/client.go
+++ b/whisk/client.go
@@ -598,7 +598,7 @@ func parseApplicationError(resp *http.Response, data
[]byte, v interface{}) (*ht
// Handle application errors that occur with blocking invocations when
--result option is true (#5)
if err == nil && appErrResult.Error != nil {
- Debug(DbgInfo, "Error code is null, blocking with result
invocation error has occured\n")
+ Debug(DbgInfo, "Error code is null, blocking with result
invocation error has occurred\n")
errMsg := fmt.Sprintf("%v", *appErrResult.Error)
Debug(DbgInfo, "Application error received: %s\n", errMsg)