From 42e5fb6f572cc94b6593cba1fca0536ed8f9d49c Mon Sep 17 00:00:00 2001 From: Ryan Chane <103678133+rchane@users.noreply.github.com> Date: Mon, 9 Dec 2024 12:30:14 -0800 Subject: [PATCH] CR-1221968 Fix invalid priority error throw (#8643) Signed-off-by: Ryan Chane --- src/runtime_src/core/common/query_requests.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime_src/core/common/query_requests.h b/src/runtime_src/core/common/query_requests.h index fd40dc3809f..94945f2abd7 100644 --- a/src/runtime_src/core/common/query_requests.h +++ b/src/runtime_src/core/common/query_requests.h @@ -1798,7 +1798,7 @@ struct aie_partition_info : request case 640: //0x280 return "Low"; default: - throw xrt_core::system_error(EINVAL, "Invalid priority status: " + std::to_string(prio_status)); + return "N/A"; } } };