-
Notifications
You must be signed in to change notification settings - Fork 175
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
Bug due to None datatype in _parse_job_results() #470
Labels
Comments
🎉 Thanks for opening your first issue here! Welcome to the community! |
1 task
github-actions bot
pushed a commit
that referenced
this issue
Apr 11, 2024
## [1.12.0](v1.11.0...v1.12.0) (2024-04-11) ### Features * **ApplicationFilter:** Add new_appid parameter ([#547](#547)) ([bc96108](bc96108)) * **Firewall:** New fields for show_system_resources ([#544](#544)) ([9e8cc2a](9e8cc2a)) * Handling Log Collector Group (LCG) pushes ([#493](#493)) ([7e87952](7e87952)) * **panos/network:** Advanced routing engine ([#539](#539)) ([173bb8a](173bb8a)) * Enhance updater logic ([#548](#548)) ([23ed1ad](23ed1ad)) * **network.BgpPolicyRule:** Add action_community_modifier param ([#535](#535)) ([58ce888](58ce888)), closes [#534](#534) * **PanDevice:** add `is_ready()` ([#532](#532)) ([a6b018e](a6b018e)) ### Bug Fixes * **_parse_job_results:** Catch None details in response ([#471](#471)) ([f01ae25](f01ae25)), closes [#470](#470)
github-actions bot
pushed a commit
that referenced
this issue
Apr 11, 2024
## [1.12.0](v1.11.0...v1.12.0) (2024-04-11) ### Features * **ApplicationFilter:** Add new_appid parameter ([#547](#547)) ([bc96108](bc96108)) * **Firewall:** New fields for show_system_resources ([#544](#544)) ([9e8cc2a](9e8cc2a)) * Handling Log Collector Group (LCG) pushes ([#493](#493)) ([7e87952](7e87952)) * **panos/network:** Advanced routing engine ([#539](#539)) ([173bb8a](173bb8a)) * Enhance updater logic ([#548](#548)) ([23ed1ad](23ed1ad)) * **network.BgpPolicyRule:** Add action_community_modifier param ([#535](#535)) ([58ce888](58ce888)), closes [#534](#534) * **PanDevice:** add `is_ready()` ([#532](#532)) ([a6b018e](a6b018e)) ### Bug Fixes * **_parse_job_results:** Catch None details in response ([#471](#471)) ([f01ae25](f01ae25)), closes [#470](#470)
github-actions bot
pushed a commit
that referenced
this issue
Apr 11, 2024
## [1.12.0](v1.11.0...v1.12.0) (2024-04-11) ### Features * **ApplicationFilter:** Add new_appid parameter ([#547](#547)) ([bc96108](bc96108)) * **Firewall:** New fields for show_system_resources ([#544](#544)) ([9e8cc2a](9e8cc2a)) * Handling Log Collector Group (LCG) pushes ([#493](#493)) ([7e87952](7e87952)) * **panos/network:** Advanced routing engine ([#539](#539)) ([173bb8a](173bb8a)) * Enhance updater logic ([#548](#548)) ([23ed1ad](23ed1ad)) * **network.BgpPolicyRule:** Add action_community_modifier param ([#535](#535)) ([58ce888](58ce888)), closes [#534](#534) * **PanDevice:** add `is_ready()` ([#532](#532)) ([a6b018e](a6b018e)) ### Bug Fixes * **_parse_job_results:** Catch None details in response ([#471](#471)) ([f01ae25](f01ae25)), closes [#470](#470)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
When using the base.syncjob method i'm encountering an issue if there is no details in the job response. This is happening when downloading a vm series plugin.
Expected behavior
Expect the method to complete successfully even when there is no 'details' in response.
Current behavior
Response from python call and details is None
Response form the xml api direct is consistent and there is no details / line.
Possible solution
The issue appears to be in the _parse_job_results() method in base.py. Adding an exception handler for the type error would resolve the issue.
line 5130 base.py
Steps to reproduce
Context
Basically I'm trying to download / install vm plugins and wait for the task to complete using the base.syncjob method.
Your Environment
The text was updated successfully, but these errors were encountered: