Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PAN-OS tag vs tags bug #27188

Merged
merged 3 commits into from Jun 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Packs/PAN-OS/Integrations/Panorama/Panorama.py
Expand Up @@ -3559,7 +3559,7 @@ def panorama_list_rules_command(args: dict):
xpath = XPATH_SECURITY_RULES

filters = assign_params(
tags=argToList(args.get('tag')),
tags=argToList(args.get('tags')),
action=args.get('action')
)
name = args.get('rulename')
Expand Down
6 changes: 6 additions & 0 deletions Packs/PAN-OS/ReleaseNotes/1_17_4.md
@@ -0,0 +1,6 @@

#### Integrations

##### Palo Alto Networks PAN-OS

- Fixed an issue where ***pan-os-list-rules*** command was filtering by *tag* instead of *tags* argument.
2 changes: 1 addition & 1 deletion Packs/PAN-OS/pack_metadata.json
Expand Up @@ -2,7 +2,7 @@
"name": "PAN-OS by Palo Alto Networks",
"description": "Manage Palo Alto Networks Firewall and Panorama. For more information see Panorama documentation.",
"support": "xsoar",
"currentVersion": "1.17.3",
"currentVersion": "1.17.4",
"author": "Cortex XSOAR",
"url": "https://www.paloaltonetworks.com/cortex",
"email": "",
Expand Down