Skip to content

Commit

Permalink
Merge pull request #391 from leemannd/imp_disable_invalid_filters
Browse files Browse the repository at this point in the history
[IMP]openupgrade: disable_invalid_filters
  • Loading branch information
pedrobaeza authored Nov 1, 2024
2 parents ac5bc6e + 3367485 commit e512ee6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions openupgradelib/openupgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -2898,6 +2898,13 @@ def format_message(f):
)
f.active = False
break
# ACTION_ID
if f.action_id and not f.action_id.exists():
logger.warning(
format_message(f) + "as it contains an invalid action_id %s.",
f.action_id,
)
f.active = False


def add_fields(env, field_spec):
Expand Down

0 comments on commit e512ee6

Please sign in to comment.