Skip to content
Snippets Groups Projects

Feature/skill memory gui fix

Merged Andre Meixner requested to merge feature/skill-memory-gui-fix into master
3 files
+ 9
1
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -45,6 +45,7 @@ namespace armarx::skills::gui
<< "Unhandled Ice exception encountered while updating executions. Exception was: "
<< e;
emit connectionUpdate("Could not fetch executions", e.what());
emit disableAutoUpdate();
return {};
}
catch (...)
@@ -159,6 +160,7 @@ namespace armarx::skills::gui
<< "Unhandled Ice exception encountered while updating skills. Exception was: "
<< e;
emit connectionUpdate("Could not fetch skills", e.what());
emit disableAutoUpdate();
return {};
}
catch (...)
@@ -228,8 +230,8 @@ namespace armarx::skills::gui
{
std::scoped_lock l(mutex_snapshot);
snapshot.statuses = fetchExecutionsFromMemory();
snapshot.skills = fetchSkillsFromMemory();
snapshot.statuses = fetchExecutionsFromMemory();
// notify registered widgets of update
emit updateAvailable(filterUpdate(snapshot));
Loading