Skip to content

Commit 1315510

Browse files
kostorrteo
authored andcommitted
[core] TRG should ignore the daq trigger
1 parent 5e34a66 commit 1315510

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

core/integration/trg/trgutil.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,12 @@ func parseRunLine(line string) (run Run, err error) {
140140

141141
detectorsSSlice := strings.Split(cols[3], ",")
142142
for _, item := range detectorsSSlice {
143+
// don't interfere with daq
144+
// also daq not in known system ids -> results in error
145+
if strings.TrimSpace(item) == "daq" {
146+
continue
147+
}
148+
143149
var det system.ID
144150
det, err = system.IDString(strings.TrimSpace(item))
145151
if err != nil {

0 commit comments

Comments
 (0)