You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File "\.venv\Lib\site-packages\tableauserverclient\server\query.py", line 70, in __getitem__
page_range = range((page - 1) * size, page * size)
~~~~~^~~
TypeError: unsupported operand type(s) for -: 'NoneType' and 'int'
NOTE: Be careful not to post user names, passwords, auth tokens or any other private or sensitive information.
Dug into it more and server side, the "GET /api/api-version/sites/site-id/flows/runs" does not return a pagination element in the XML. I think being able to iterate over run history would be useful. Unclear if FlowRuns lacking pagination is intentional. If so, I can update TSC to reflect that.
The text was updated successfully, but these errors were encountered:
#1460 tweaks the QuerySet class in such a way that it should continue to function even if the server doesn't return pagination information. Adding it in server side would still be ideal to improve clarity and return information about what is truly available server-side.
Describe the bug
A call to Get Flow Runs does not return pagination XML.
Versions
Details of your environment, including:
To Reproduce
Steps to reproduce the behavior. Please include a code snippet where possible.
Results
NOTE: Be careful not to post user names, passwords, auth tokens or any other private or sensitive information.
Dug into it more and server side, the "GET /api/api-version/sites/site-id/flows/runs" does not return a pagination element in the XML. I think being able to iterate over run history would be useful. Unclear if FlowRuns lacking pagination is intentional. If so, I can update TSC to reflect that.
The text was updated successfully, but these errors were encountered: