Skip to content

Commit

Permalink
addressing feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
toumorokoshi committed Oct 21, 2024
1 parent 86d92d0 commit c6e71da
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions aep/general/0151/aep.md.j2
Original file line number Diff line number Diff line change
Expand Up @@ -78,21 +78,16 @@ but is not obligated to do so:

{% tab proto %}

- A Resource that does not permit multiple requests in parallel (denying any new
request until the one that is in progress finishes) **must** return `ABORTED`
if a user attempts a parallel request, and include an error message explaining
the situation.
- A resource that does not support concurrent mutation requests **must** return an
`ABORTED` error if the resource has an outstanding mutation.

{% tab oas %}

- A Resource that does not permit multiple requests in parallel (denying any new
request until the one that is in progress finishes) **must** return a `409
Conflict` if a user attempts a parallel request, and include an error message
explaining the situation.
- A resource that does not support concurrent mutation requests **must** respond
with a `409 Conflict` status code if the resource has an outstanding mutation.

{% endtabs %}


### Expiration

APIs **may** allow their operation resources to expire after sufficient time
Expand Down

0 comments on commit c6e71da

Please sign in to comment.