Skip to content

Commit

Permalink
Merge "[FAB-5150] remove bin data from install error"
Browse files Browse the repository at this point in the history
  • Loading branch information
mastersingh24 authored and Gerrit Code Review committed Jul 3, 2017
2 parents 4cd2a8c + b5f26a0 commit 2a5be7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/scc/lscc/lscc.go
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ func (lscc *LifeCycleSysCC) Invoke(stub shim.ChaincodeStubInterface) pb.Response

// 2. check local MSP Admins policy
if err = lscc.policyChecker.CheckPolicyNoChannel(mgmt.Admins, sp); err != nil {
return shim.Error(fmt.Sprintf("Authorization for INSTALL on %s has been denied with error %s", args[1], err))
return shim.Error(fmt.Sprintf("Authorization for INSTALL has been denied (error-%s)", err))
}

depSpec := args[1]
Expand Down
2 changes: 1 addition & 1 deletion core/scc/lscc/lscc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func TestInstall(t *testing.T) {
testInstall(t, "example02.go", "0", path, InvalidChaincodeNameErr("example02.go").Error(), "Alice")
testInstall(t, "", "0", path, EmptyChaincodeNameErr("").Error(), "Alice")
testInstall(t, "example02", "1{}0", path, InvalidVersionErr("1{}0").Error(), "Alice")
testInstall(t, "example02", "0", path, "Authorization for INSTALL on", "Bob")
testInstall(t, "example02", "0", path, "Authorization for INSTALL has been denied", "Bob")
}

func testInstall(t *testing.T, ccname string, version string, path string, expectedErrorMsg string, caller string) {
Expand Down

0 comments on commit 2a5be7b

Please sign in to comment.