We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e34a66 commit 1315510Copy full SHA for 1315510
1 file changed
core/integration/trg/trgutil.go
@@ -140,6 +140,12 @@ func parseRunLine(line string) (run Run, err error) {
140
141
detectorsSSlice := strings.Split(cols[3], ",")
142
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
+
149
var det system.ID
150
det, err = system.IDString(strings.TrimSpace(item))
151
if err != nil {
0 commit comments