Skip to content
Snippets Groups Projects
Commit 1d0a5354 authored by Julian Tusch's avatar Julian Tusch :no_entry_sign:
Browse files

added skill for testing

parent 247c50ad
No related branches found
No related tags found
3 merge requests!463145-fluxio-results-and-errors-refactor,!452Resolve "Fluxio results and errors",!449Fluxio preliminary release
Pipeline #19753 passed
......@@ -11,6 +11,7 @@
#include <ArmarXCore/core/exceptions/LocalException.h>
#include <ArmarXCore/core/logging/Logging.h>
#include <ArmarXCore/interface/core/time.h>
#include "RobotAPI/libraries/skills/core/FluxioProfile.h"
#include "RobotAPI/libraries/skills/core/FluxioProvider.h"
......@@ -247,6 +248,22 @@ namespace armarx
ret.push_back(skill.value());
}
ret.push_back(skills::manager::dto::FluxioSkill{
.id = "SkillNotFound",
.name = "SkillNotFound",
.description = "This skill cannot be found and will throw an error.",
.timeout = armarx::core::time::dto::Duration(-1),
.lastChanged = "",
.executable = false,
.native = true,
.skillProviderId = {.id = "test provider", .hint = "test provider"},
.parameters = {},
.nodesHasValue = false,
.nodes = {},
.edgesHasValue = false,
.edges = {},
});
return ret;
}
......
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