We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 289655e commit 4d61870Copy full SHA for 4d61870
ur_robot_driver/src/rtde/rtde_client.cpp
@@ -199,14 +199,14 @@ void RTDEClient::setupOutputs(const uint16_t protocol_version)
199
for (std::size_t i = 0; i < variable_types.size(); ++i)
200
{
201
LOG_DEBUG("%s confirmed as datatype: %s", output_recipe_[i].c_str(), variable_types[i].c_str());
202
- return;
203
if (variable_types[i] == "NOT_FOUND")
204
205
std::string message = "Variable '" + output_recipe_[i] +
206
"' not recognized by the robot. Probably your output recipe contains errors";
207
throw UrException(message);
208
}
209
+ return;
210
211
else
212
0 commit comments