You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The DELETE method on the components endpoint accepts multiple IDs for the components to be deleted. It returns a multi-status response, so that the caller can find out, which components could be deleted successfully. The current implementation, however, sends a 500 error response as soon as an error occurs when deleting components.
To reproduce, send a request to delete multiple components passing in some existing and at least one non-existing component IDs, e.g.: DELETE /components/existingID1,existingID2,invalidID,existingID3
Response is a 500 error result. The existing components listed before the invalid ID have been deleted.
Expected result is a multi-status response containing success responses for the existing components and error responses for the invalid IDs.
The text was updated successfully, but these errors were encountered:
The DELETE method on the components endpoint accepts multiple IDs for the components to be deleted. It returns a multi-status response, so that the caller can find out, which components could be deleted successfully. The current implementation, however, sends a 500 error response as soon as an error occurs when deleting components.
To reproduce, send a request to delete multiple components passing in some existing and at least one non-existing component IDs, e.g.:
DELETE /components/existingID1,existingID2,invalidID,existingID3
Response is a 500 error result. The existing components listed before the invalid ID have been deleted.
Expected result is a multi-status response containing success responses for the existing components and error responses for the invalid IDs.
The text was updated successfully, but these errors were encountered: