Skip to content

Commit

Permalink
Fix response return and remove check
Browse files Browse the repository at this point in the history
  • Loading branch information
Liquid369 committed Oct 28, 2024
1 parent e5d1f2f commit 42ee9a6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/functional/test_framework/authproxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,8 @@ def _get_response(self):
log.debug("<-%s- [%.6f] %s" % (response["id"], elapsed, json.dumps(response["result"], default=EncodeDecimal, ensure_ascii=self.ensure_ascii)))
else:
log.debug("<-- [%.6f] %s" % (elapsed, responsedata))
return response
return response, http_response.status


def __truediv__(self, relative_uri):
return AuthServiceProxy("{}/{}".format(self.__service_url, relative_uri), self._service_name, connection=self.__conn)

0 comments on commit 42ee9a6

Please sign in to comment.