esrlabs / chipmunk

log analysis tool
Apache License 2.0
569 stars 39 forks source link

Fix export after multiple producer's return items #2124

Closed AmmarAbouZor closed 1 month ago

AmmarAbouZor commented 1 month ago

This PR fixes a Bug introduced in #2114

Break statements are existing mistakenly the newly added nested loop now instead of exiting the outer while let loops. Which led to different export results compared to the previous implementation.

To fix this, this PR added labels to the outer loops then changed all the break statements to refer to the matching outer loops labels.