Skip to content

Commit

Permalink
Rename M_DIRTY_WRITE -> M_CONCURRENT_WRITE
Browse files Browse the repository at this point in the history
"Dirty write" refers to a specific SQL phenomenon regarding transaction
isolation, see e.g.
https://blog.acolyer.org/2016/02/24/a-critique-of-ansi-sql-isolation-levels/

Instead, prefer the word "concurrent".
  • Loading branch information
David Robertson committed Nov 13, 2023
1 parent 43d9871 commit 3fecfcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proposals/3886-simple-rendezvous-capability.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ HTTP response codes, and Matrix error codes:
- `202 Accepted` - payload updated
- `400 Bad Request` (`M_MISSING_PARAM`) - a required header was not provided.
- `404 Not Found` (`M_NOT_FOUND`) - rendezvous URI is not valid (it could have expired)
- `412 Precondition Failed` (`M_DIRTY_WRITE`, **a new error code**) - when the ETag does not match
- `412 Precondition Failed` (`M_CONCURRENT_WRITE`, **a new error code**) - when the ETag does not match
- `413 Payload Too Large` (`M_TOO_LARGE`) - the supplied payload is too large
- `429 Too Many Requests` (`M_UNKNOWN`) - the request has been rate limited

Expand Down

0 comments on commit 3fecfcd

Please sign in to comment.