Skip to content

Commit

Permalink
PAN-2339: Testing return value
Browse files Browse the repository at this point in the history
  • Loading branch information
jacekv committed Nov 26, 2024
1 parent 8c41706 commit 6585f8c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pantos/servicenode/restapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,8 @@ def post(self) -> flask.Response:
_logger.critical('unable to process a transfer request',
exc_info=True)
internal_server_error()
return ok_response(response)
# return ok_response(response)
return ok_response({'task_id': str(task_id)})


class _TransferStatus(flask_restful.Resource):
Expand Down

0 comments on commit 6585f8c

Please sign in to comment.