GitHub user dosubot[bot] added a comment to the discussion: Alerts & Reports not working
<!-- Answer --> It’s possible that Okta Auth is blocking Superset’s workers from accessing dashboards for scheduled reports, since background tasks need to authenticate to view protected resources. Superset provides a config option called `MACHINE_AUTH_PROVIDER_CLASS` that controls how workers authenticate; you can override this to implement custom logic for worker authentication, which might help if Okta is interfering. There’s also a `WEBDRIVER_AUTH_FUNC` option for customizing how the screenshot generator (used in reports) authenticates—this could be used to inject a session or bypass Okta for internal requests if needed. However, there’s no built-in or documented method to bypass Okta Auth specifically for localhost or worker processes, so this would require advanced customization and careful consideration of security risks. See [here for details](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset/config.py). Make sure your Celery config and database setup are correct, and check that `ALERT_REPORTS_NOTIFICATION_DRY_RUN` is set to `False` in your worker environment, as this can also prevent reports from being sent even if everything else looks fine ([reference](https://github.com/apache/superset/issues/32001)). <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/a04db7dc-c266-4fae-83c4-478d86d004cb?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/a04db7dc-c266-4fae-83c4-478d86d004cb?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/a04db7dc-c266-4fae-83c4-478d86d004cb?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/a04db7dc-c266-4fae-83c4-478d86d004cb?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/a04db7dc-c266-4fae-83c4-478d86d004cb?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/a04db7dc-c266-4fae-83c4-478d86d004cb?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/a04db7dc-c266-4fae-83c4-478d86d004cb?feedback_type=other)</sup> [](https://app.dosu.dev/a28d3c7e-a9d3-459e-9fb6-3a6f9ff4f357/ask?utm_source=github)& nbsp;[](https://go.dosu.dev/discord-bot) [](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/discussions/35103) GitHub link: https://github.com/apache/superset/discussions/35103#discussioncomment-14371482 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
