Hi all,
I'm writing scripts in Python using the LAVA XML-RPC API to parse data from my bundle stream.
I read the documentation for the dashboard.get_filter_results() method. I understand that by default, the count parameter is set to 10 as shown here:
get_filter_results(filter_name, count=10, offset=0)
However, if I change the value of count from 10 to 100, I run into this error:
bbb_results = server.dashboard.get_filter_results(bbb_filter_name, count=100) TypeError: __call__() got an unexpected keyword argument 'count'
and bbb_filter_name is set to "~lisatn/pmwg-bbb"
I would like to be able to display more than 10 results (currently have 75 pm-qa test runs for beaglebone-black), or am I misunderstanding the purpose of count?
Lisa