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 1a14af2 commit 9be411dCopy full SHA for 9be411d
src/Cru/CruBar.cxx
@@ -933,7 +933,8 @@ std::vector<int> CruBar::getDataTakingLinks()
933
for (auto const& el : linkMap) {
934
int id = el.first;
935
Link link = el.second;
936
- if (!datapathWrapper.isLinkEnabled(link) || gbt.getStickyBit(link) == Cru::LinkStatus::Down) {
+ // TODO: Check for link UP disabled until clear what will happen with the case of TPC UL
937
+ if (!datapathWrapper.isLinkEnabled(link) /* || gbt.getStickyBit(link) == Cru::LinkStatus::Down */) {
938
continue;
939
}
940
links.push_back(id);
0 commit comments