You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by cb...@apache.org on 2018/04/26 06:51:17 UTC

[incubator-openwhisk-client-go] branch tid updated (94e4c76 -> 0c4a8c7)

This is an automated email from the ASF dual-hosted git repository.

cbickel pushed a change to branch tid
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-client-go.git.


    omit 94e4c76  Parse numbers correctly in error response.
     new 0c4a8c7  Parse numbers correctly in error response.

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (94e4c76)
            \
             N -- N -- N   refs/heads/tid (0c4a8c7)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 whisk/client.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
cbickel@apache.org.

[incubator-openwhisk-client-go] 01/01: Parse numbers correctly in error response.

Posted by cb...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

cbickel pushed a commit to branch tid
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-client-go.git

commit 0c4a8c730e1b0eaf94cfd5f329b654b3637c5ad4
Author: Christian Bickel <cb...@de.ibm.com>
AuthorDate: Thu Apr 26 08:44:50 2018 +0200

    Parse numbers correctly in error response.
---
 whisk/client.go | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/whisk/client.go b/whisk/client.go
index 85ac505..16e7db7 100644
--- a/whisk/client.go
+++ b/whisk/client.go
@@ -514,11 +514,14 @@ func parseErrorResponse(resp *http.Response, data []byte, v interface{}) (*http.
 	Debug(DbgInfo, "HTTP failure %d + body\n", resp.StatusCode)
 
 	// Determine if an application error was received (#5)
-	errorResponse := &ErrorResponse{Response: resp}
-	err := json.Unmarshal(data, errorResponse)
+    buf := bytes.NewBuffer(data)
+    d := json.NewDecoder(buf)
+    d.UseNumber()
+
+    errorResponse := &ErrorResponse{Response: resp}
 
 	// Determine if error is an application error or an error generated by API
-	if err == nil {
+    if err := d.Decode(&errorResponse); err != nil {
 		if errorResponse.Code == nil /*&& errorResponse.ErrMsg != nil */ && resp.StatusCode == 502 {
 			return parseApplicationError(resp, data, v)
 		} else if errorResponse.Code != nil && errorResponse.ErrMsg != nil {

-- 
To stop receiving notification emails like this one, please contact
cbickel@apache.org.