Skip to content

Commit

Permalink
cc core: change validation message
Browse files Browse the repository at this point in the history
commit_hash:e4bc440d0b65e36031a0269bb11207798d32f3af
  • Loading branch information
aabagdasaryan committed Feb 13, 2025
1 parent 36e3ea8 commit 0352cc6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion core/src/components/manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,11 @@ void ValidateConfigs(
const auto it = component_config_map.find(adder->GetComponentName());
UINVARIANT(
it != component_config_map.cend(),
fmt::format("Component-config map does not have name of component '{}'", adder->GetComponentName())
fmt::format(
"Component '{}' is registered , but not present in components_manager.components section of "
"config.yaml.",
adder->GetComponentName()
)
);
try {
adder->ValidateStaticConfig(it->second, validation_condition);
Expand Down

0 comments on commit 0352cc6

Please sign in to comment.