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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
