Skip to content

Commit

Permalink
Fix bundle limit check
Browse files Browse the repository at this point in the history
Signed-off-by: linning <[email protected]>
  • Loading branch information
NingLin-P committed Mar 27, 2024
1 parent 5695f20 commit be1894e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions domains/client/domain-operator/src/domain_bundle_proposer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,7 @@ where
) < BUNDLE_UTILIZATION_THRESHOLD
{
skipped += 1;
continue;
} else {
break;
}
Expand All @@ -298,6 +299,7 @@ where
< BUNDLE_UTILIZATION_THRESHOLD
{
skipped += 1;
continue;
} else {
break;
}
Expand Down

0 comments on commit be1894e

Please sign in to comment.