Skip to content
Snippets Groups Projects
Commit 2cd282c5 authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

bugfix in problem

parent e446e3f4
No related branches found
No related tags found
1 merge request!448Draft: Resolve "Implementation of new nodes creation"
Pipeline #18323 passed
......@@ -276,6 +276,7 @@ SensorBasePtr Problem::installSensor(const std::string& _params_yaml_filen
// Add the installed schema folders after optional input _schema_folders
server.addFolderSchema(FolderRegistry::getRegisteredFolders());
_schema_folders = server.getFolderSchema();
// Validate against TypeAndPlugin (check if it has 'type' and 'plugin')
// NOTE: Validation with the correponding schema is done in the creator
......@@ -375,6 +376,7 @@ ProcessorBasePtr Problem::installProcessor(SensorBasePtr _sensor_corr
// Add the installed schema folders after optional input _schema_folders
server.addFolderSchema(FolderRegistry::getRegisteredFolders());
_schema_folders = server.getFolderSchema();
// Validate against TypeAndPlugin (check if it has 'type' and 'plugin')
// NOTE: Validation with the correponding schema is done in the creator
......@@ -423,6 +425,7 @@ ProcessorBasePtr Problem::installProcessor(const std::string& _params_yaml
// Add the installed schema folders after optional input _schema_folders
server.addFolderSchema(FolderRegistry::getRegisteredFolders());
_schema_folders = server.getFolderSchema();
// Validate against ProcessorBase and derived type
// NOTE: Validation with the correponding schema is done in the creator
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment