Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,9 @@ async def get_redirection_to_study_page(request: web.Request) -> web.Response:
extra={"error_code": error_code},
)
raise RedirectToFrontEndPageError(
MSG_UNEXPECTED_ERROR.format(hint="while copying your study"),
MSG_UNEXPECTED_ERROR.format(
hint=f"while copying your study [{error_code}]"
),
error_code=error_code,
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
) from exc
Expand Down
Loading