On 19/07/2021 10.51, Adrien Glauser wrote:
I checked whether all methods exposed by https://github.com/python-bugzilla/python-bugzilla work and I stumbled into one pretty annoying blocker: the 'quicksearch' query parameter does not seem to be handled by the instance. In other words,
``` query = bzapi.build_query( quicksearch="snapper", include_fields=["id", "summary"]) bugs = bzapi.query(query) <- this throws 'xmlrpc.client.Fault: <Fault 53: 'quicksearch is not a valid parameter for the Bugzilla::Bug::match function.'>' ```
Any clue? Or any clue about someone who would have a clue?
https://www.bugzilla.org/docs/4.4/en/html/api/Bugzilla/WebService/Bug.html documents the available API and it does not mention quicksearch. Maybe the client side expects a newer bugzilla server version (that is in planning, but could still take a while)