You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@superset.apache.org by GitBox <gi...@apache.org> on 2022/04/29 13:07:40 UTC

[GitHub] [superset] nickrbclark commented on pull request #16683: feat: add global max row limit

nickrbclark commented on PR #16683:
URL: https://github.com/apache/superset/pull/16683#issuecomment-1113290436

   in https://domain.com/api/v1/dashboard/7/datasets I was getting a type mismatch error.
   in apply_max_row_limit line 1833,
   `min(max_limit, limit)`
   I was getting a
   '<' not supported between instances of 'str' and 'int'
   I wasn't really sure what was going on, but I was able to fix it with
   `min(max_limit, int(limit))`
   
   I have no idea if there's something wrong with my config, or if the particular usage of the function through this api call was bad.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org
For additional commands, e-mail: notifications-help@superset.apache.org