rusackas commented on PR #43935: URL: https://github.com/apache/superset/pull/43935#issuecomment-5594018401
@Piyush-08-bot this stops the crash but doesn't fix the underlying problem: `super().__init__(default_timeout)` on line 48 still swallows `**kwargs` instead of forwarding it. So a `CACHE_CONFIG` with `ignore_delete_many_errors=False` silently becomes `True` once it hits `BaseCache`, which is what @sadpandajoe flagged a couple days back. Can you pass `**kwargs` through to `super().__init__()` and add an assertion that the value actually lands on the instance, not just that no TypeError is raised? -- 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]
