Commit 4832702
authored
fix: SVC filters not applied to all imports when MICROSERVICE variant is present (#232)
fix: SVC filters not applied to all imports when MICROSERVICE variant present
When traversing the parsing graph for SVC filter processing, a break
statement caused the loop to exit on the first MICROSERVICE import URN,
silently skipping all subsequent import URNs regardless of their variant.
Change break to continue so MICROSERVICE URNs are individually skipped
and processing continues for all remaining imports, consistent with how
__process_req_filters_per_urn already handles this case.
Fixes #231, refs #222.1 parent 353d56e commit 4832702
1 file changed
Lines changed: 1 addition & 1 deletion
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
476 | 476 | | |
477 | 477 | | |
478 | 478 | | |
479 | | - | |
| 479 | + | |
480 | 480 | | |
481 | 481 | | |
482 | 482 | | |
| |||
0 commit comments