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
{{ message }}
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
Fetching a deleted service_instance does still return the informations about the service_instance. This is a nice feature, as this allows to still show informations about a 'deleted' service_instance. The bad part is, that it's now not clear if the service_instance actually still exists.
SPEC: is not completely conclusive - 404 is only mentioned for when not existing or in creation ... not what shouls happen on deleted
Solution 1: Return 404 as soon as the service_instance is deleted
Solution 2: Add 4 new properties to the FETCH Response:
created_at: date
created: true
deleted_at: null
deleted: false
Solution 3: Retunr 410 GONE - Would not be complient with SPEC
The text was updated successfully, but these errors were encountered:
Problem
Fetching a deleted service_instance does still return the informations about the service_instance. This is a nice feature, as this allows to still show informations about a 'deleted' service_instance. The bad part is, that it's now not clear if the service_instance actually still exists.
SPEC: is not completely conclusive - 404 is only mentioned for when not existing or in creation ... not what shouls happen on deleted
Solution 1: Return 404 as soon as the service_instance is deleted
Solution 2: Add 4 new properties to the FETCH Response:
Solution 3: Retunr 410 GONE - Would not be complient with SPEC
The text was updated successfully, but these errors were encountered: