Skip to content

Commit

Permalink
fix: continue iterating over branches even if a patch can't be identi…
Browse files Browse the repository at this point in the history
…fied
  • Loading branch information
pyoor committed Dec 9, 2023
1 parent fcd8a30 commit cc9f676
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bugmon/bugmon.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,10 +379,11 @@ def _verify_fixed(self) -> None:
if getattr(self.bug, flag) == "fixed":
patch_rev = self.bug.find_patch_rev(alias)
if patch_rev is None:
# This may have been fixed in another bug.
log.warning(
f"Unable to find commit for fx{rel_num}. Cannot verify fix!"
)
return None
continue
branch = self._reproduce_bug(config, alias, patch_rev)
if isinstance(branch, ReproductionPassed):
log.info(f"Verified fixed on {flag}")
Expand Down

0 comments on commit cc9f676

Please sign in to comment.