Skip to content

Commit

Permalink
[Mon] Fix service collisions on ecal_mon_gui (#1554)
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianReimold authored Apr 22, 2024
1 parent a003676 commit 0ad9379
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/mon/mon_gui/src/widgets/models/service_tree_item.h
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ class ServiceTreeItem :

static std::string generateIdentifier(const T& service, const eCAL::pb::Method& method)
{
return std::to_string(service.pid()) + "@" + service.hname() + "@" + method.mname();
return std::to_string(service.pid()) + "@" + service.hname() + "@" + service.sname() + "@" + method.mname();
}

void update(const T& service, const eCAL::pb::Method& method)
Expand Down

0 comments on commit 0ad9379

Please sign in to comment.