Skip to content

Commit eea947b

Browse files
authored
[#110]: fix(collectors): fix collectors loop
2 parents 36795e5 + 3633b30 commit eea947b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pkg/container/calculate_deps.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,12 +172,14 @@ func (e *Endure) implCollectorPath(vrtx *vertex.Vertex) error {
172172
if err != nil {
173173
return err
174174
}
175+
continue
175176
}
176-
// process only struct deps if not interfaces were found
177+
// process only struct deps if no interfaces were found
177178
err = e.processStructDeps(getFunctionName(fn), vrtx, params)
178179
if err != nil {
179180
return err
180181
}
182+
continue
181183
}
182184
return nil
183185
}

0 commit comments

Comments
 (0)