Skip to content

Commit

Permalink
CR-1221968 Fix invalid priority error throw (#8643)
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Chane <[email protected]>
  • Loading branch information
rchane authored Dec 9, 2024
1 parent 574c402 commit 42e5fb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime_src/core/common/query_requests.h
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}
}
};
Expand Down

0 comments on commit 42e5fb6

Please sign in to comment.