Skip to content

Commit 8225a16

Browse files
nipunn1313Convex, Inc.
authored andcommitted
Remove not-found errors from the server-error dashboard. (#42528)
GitOrigin-RevId: 6fed9bab0dd78919c4eb386b88897a638aa8af81
1 parent 68272cf commit 8225a16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/errors/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -551,8 +551,8 @@ impl ErrorMetadata {
551551
| ErrorCode::Forbidden
552552
| ErrorCode::ClientDisconnect
553553
| ErrorCode::MisdirectedRequest
554-
| ErrorCode::RateLimited => None,
555-
ErrorCode::NotFound => Some("not_found"),
554+
| ErrorCode::RateLimited
555+
| ErrorCode::NotFound => None,
556556
ErrorCode::OCC { .. } => Some("occ"),
557557
ErrorCode::OutOfRetention => Some("out_of_retention"),
558558
ErrorCode::Overloaded => Some("overloaded"),

0 commit comments

Comments
 (0)