Skip to content

Commit

Permalink
[Functions] Remove extra colon in BackgroundTask error string (#5696)
Browse files Browse the repository at this point in the history
  • Loading branch information
rokatyy committed Jun 3, 2024
1 parent 3e8d318 commit c565fd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/api/api/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1315,7 +1315,7 @@ async def _delete_function(
auth_info, project, nuclio_function_names
)
if failed_requests:
error_message = f"Failed to delete function {function_name}. Errors: {';'.join(failed_requests)}"
error_message = f"Failed to delete function {function_name}. {';'.join(failed_requests)}"
await _update_functions_with_deletion_info(
functions, project, {"status.deletion_error": error_message}
)
Expand Down

0 comments on commit c565fd3

Please sign in to comment.