Bug 825370
| Summary: | Fault 53: 'v1 is not a valid parameter for the Bugzilla::Bug::match function.' | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | [Community] Bugzilla | Reporter: | Jeff Bastian <jbastian> | ||||||
| Component: | Bugzilla General | Assignee: | PnT DevOps Devs <hss-ied-bugs> | ||||||
| Status: | CLOSED NOTABUG | QA Contact: | |||||||
| Severity: | medium | Docs Contact: | |||||||
| Priority: | unspecified | ||||||||
| Version: | 4.2 | ||||||||
| Target Milestone: | --- | ||||||||
| Target Release: | --- | ||||||||
| Hardware: | All | ||||||||
| OS: | Linux | ||||||||
| Whiteboard: | |||||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||||
| Doc Text: | Story Points: | --- | |||||||
| Clone Of: | Environment: | ||||||||
| Last Closed: | 2012-05-25 20:19:51 UTC | Type: | Bug | ||||||
| Regression: | --- | Mount Type: | --- | ||||||
| Documentation: | --- | CRM: | |||||||
| Verified Versions: | Category: | --- | |||||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||||
| Embargoed: | |||||||||
| Attachments: |
|
||||||||
|
Description
Jeff Bastian
2012-05-25 20:00:20 UTC
Created attachment 586940 [details] example script to query bugzilla The attached script should perform a search equivalent to: https://bugzilla.redhat.com/buglist.cgi?f1=keywords&list_id=38384&o1=substring&classification=Fedora&query_format=advanced&bug_status=NEW&bug_status=ASSIGNED&v1=Patch&product=Fedora Notice v1=Patch is valid in the URL, but the xmlrpc interface complains "v1 is not a valid parameter" Created attachment 586941 [details]
patched python-bugzilla module
If it helps, attached is my updated python-bugzilla module
Ahh, I discovered that adding a query_format parameter fixed the problem:
query['query_format'] = 'advanced'
This was not necessary with Bugzilla 3.6. I'll update my scripts.
|