From a9c8c6a0d790ae6778d0749e063cd62910b37363 Mon Sep 17 00:00:00 2001 From: David Holtz Date: Fri, 25 Oct 2024 14:35:25 +0000 Subject: [PATCH] fix: improve streamin error to include error_type --- router/src/server.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/router/src/server.rs b/router/src/server.rs index 41b59665..ef543730 100644 --- a/router/src/server.rs +++ b/router/src/server.rs @@ -2541,6 +2541,7 @@ pub struct APIError { #[derive(serde::Serialize)] pub struct ErrorEvent { error: APIError, + error_type: String, } impl ErrorEvent { @@ -2550,6 +2551,7 @@ impl ErrorEvent { message: err.to_string(), http_status_code, }, + error_type: err.error_type().to_string(), } } }