Skip to content

Commit

Permalink
[CPU] Fix exception message when querying for unsupported property (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
atobiszei authored Jan 6, 2024
1 parent 4ecee38 commit 9c373d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/intel_cpu/src/plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,7 @@ ov::Any Engine::get_ro_property(const std::string& name, const ov::AnyMap& optio
if(!ret.empty())
return ret;

OPENVINO_THROW("Cannot get unsupport property: ", name);
OPENVINO_THROW("Cannot get unsupported property: ", name);
}

OPENVINO_SUPPRESS_DEPRECATED_START
Expand Down

0 comments on commit 9c373d3

Please sign in to comment.