Sorry if I have asked this already: Is there a chance we get access to a *Reddis instance* from SUSE / openSUSE? It would be a central piece of the caching system. Thanks in advance and have a nice day, Adrien Le 19/07/2021 à 15:49, Adrien Glauser a écrit :
You are correct Bernhard! I supposed the current version exposed this method because there is something very much like it usable from the web interface, but I was wrong.
That's quite a significant setback though. Since the plain `search` method is not fuzzy and heavily parameterized, `quicksearch` was *the* method that made querying from a "poor context" (CLI or a Matrix bot) possible. I guess we'll have to abandon querying the oS Bugzilla instance, then.
Le 19/07/2021 à 11:19, Bernhard M. Wiedemann a écrit :
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)