Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
srijan55 committed Oct 3, 2024
1 parent 8f282f0 commit 989543a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pctasks/client/pctasks/client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,10 +287,10 @@ def get_workflow(self, workflow_id: str) -> Optional[WorkflowRecord]:
)
return WorkflowRecordResponse.parse_obj(result).record
except HTTPError as e:
logger.debug("$$$"+ e.request.url)
logger.debug("$$$"+ e.request.body)
logger.debug("$$$"+ e.response.text)
logger.debug("$$$"+ e.response.status_code)
logger.debug(e.request.url)
logger.debug(e.request.body)
logger.debug(e.response.text)
logger.debug(e.response.status_code)
if e.response.status_code == 404:
return None
raise
Expand Down

0 comments on commit 989543a

Please sign in to comment.