Skip to content

Commit fcac4ff

Browse files
committed
[alf] Keep 'SERIAL' in the service name for now
1 parent ee23198 commit fcac4ff

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ o2-alf-client --dim-dns-node thedimdns.cern.ch --alf-id thealfserver --cru-seque
3131
Service names are identified by the server's hostname, the card's sequence number (as reported during ALF's startup) and the link, as follows:
3232

3333
`
34-
ALF_[hostname]/CRU_[cru_sequence_number]/LINK_[link]/[service_name]
34+
ALF_[hostname]/SERIAL_[cru_sequence_number]/LINK_[link]/[service_name]
3535
`
3636

3737
### DIM RPC services

src/DimServices/ServiceNames.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ DEFLINKSERVICENAME(icGbtI2cWrite, "IC_GBT_I2C_WRITE")
4343

4444
std::string ServiceNames::formatLink(std::string name) const
4545
{
46-
return ((boost::format("ALF_%1%/CRU_%2%/LINK_%3%/%4%") % mAlfId % mCruSequence % mLink % name)).str();
46+
return ((boost::format("ALF_%1%/SERIAL_%2%/LINK_%3%/%4%") % mAlfId % mCruSequence % mLink % name)).str();
4747
}
4848

4949
std::string ServiceNames::format(std::string name) const
5050
{
51-
return ((boost::format("ALF_%1%/CRU_%2%/%3%") % mAlfId % mCruSequence % name)).str();
51+
return ((boost::format("ALF_%1%/SERIAL_%2%/%3%") % mAlfId % mCruSequence % name)).str();
5252
}
5353

5454
} // namespace Alf

0 commit comments

Comments
 (0)