sadpandajoe commented on code in PR #35622: URL: https://github.com/apache/superset/pull/35622#discussion_r2433664738
########## superset/config.py: ########## @@ -1735,6 +1735,11 @@ def EMAIL_HEADER_MUTATOR( # pylint: disable=invalid-name,unused-argument # noq SLACK_PROXY = None SLACK_CACHE_TIMEOUT = int(timedelta(days=1).total_seconds()) +# Maximum number of retries when Slack API returns rate limit errors +# Default: 5 +# For workspaces with 10k+ channels, consider increasing to 10 +SLACK_API_RATE_LIMIT_RETRY_COUNT = 5 Review Comment: ```suggestion SLACK_API_RATE_LIMIT_RETRY_COUNT = 2 ``` Place at 2 to match the existing code behavior. Allow others to update if they need more than 2. -- 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]
