Skip to content

Commit

Permalink
Merge branch 'master' into feat/save-exception-resp
Browse files Browse the repository at this point in the history
  • Loading branch information
wangrzneu committed Dec 14, 2023
2 parents f682645 + 1e0936d commit eb13e69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Core/Exception/UCloudException.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function __construct($type, $message = "", $retCode = 0, $previous = null
{
$this->type = $type;
$this->requestId = $requestId;
$this->response = $response;
$this->response = $response
parent::__construct($message, $retCode, $previous);
}

Expand Down
3 changes: 1 addition & 2 deletions src/Core/Transport/Transport.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,7 @@ public function invoke(Request $req)
$resp->getMessage(),
$resp->getRetCode(),
null,
$requestId,
$resp
$requestId
);
}
return $resp;
Expand Down

0 comments on commit eb13e69

Please sign in to comment.