Commit 54e5f906 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Tests - Tools - Firewall Agent:

- Skipped jump rule entry types
parent e4be98d3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ class Rule:
            elif expr_entry_type in {'accept', 'drop', 'reject'}:
                rule.action = get_action_from_str(expr_entry_type)
                num_fields_updated += 1
            elif expr_entry_type in {'counter'}:
            elif expr_entry_type in {'counter', 'jump'}:
                pass # ignore these entry types
            else:
                raise UnsupportedElementException('expr_entry', expr_entry)