Skip to content

Commit

Permalink
ecalmon_tui layer detection improved
Browse files Browse the repository at this point in the history
  • Loading branch information
rex-schilasky committed Apr 24, 2024
1 parent d87004e commit 3ec4426
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/mon/mon_tui/src/model/monitor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,10 @@ class MonitorModel
topic.type_descriptor = std::move(*t.mutable_tdatatype()->mutable_desc());
for(auto &tl: t.tlayer())
{
topic.transport_layers.emplace_back(TopicTransportLayer(tl.type()));
if (tl.confirmed())
{
topic.transport_layers.emplace_back(TopicTransportLayer(tl.type()));
}
}
topic.size = t.tsize();
topic.local_connections_count = t.connections_loc();
Expand Down

0 comments on commit 3ec4426

Please sign in to comment.