dosubot[bot] commented on issue #35870: URL: https://github.com/apache/superset/issues/35870#issuecomment-3457095418
<!-- Greeting --> Hi @gmoirod! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the superset team. <!-- Answer --> The dynamic plugins API endpoint is actually registered at `/dynamic-plugins/api` (with a dash, not an underscore). When the `DYNAMIC_PLUGINS` feature flag is enabled, this endpoint should be available; if it's disabled, it returns a 404. The management menu uses the same feature flag to show the plugins page. If you're requesting `/dynamic_plugins/api` (with an underscore), you'll get a 404 because that route doesn't exist—try `/dynamic-plugins/api` instead. This behavior is confirmed by both the code and integration tests in the current codebase. No extra configuration is required beyond the feature flag for the endpoint to be available, but the feature itself is not actively maintained and may be subject to change in future releases. For more details, see the implementation and tests: - [DynamicPluginsView route and feature flag check](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset/views/dynamic_plugins.py) - [Integration test for endpoint availability](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/tests/integration_tests/dynamic_plugins_tests.py) <!-- 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/908079c3-8aef-4905-83b1-94b271823c72?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/908079c3-8aef-4905-83b1-94b271823c72?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/908079c3-8aef-4905-83b1-94b271823c72?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/908079c3-8aef-4905-83b1-94b271823c72?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/908079c3-8aef-4905-83b1-94b271823c72?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/908079c3-8aef-4905-83b1-94b271823c72?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/908079c3-8aef-4905-83b1-94b271823c72?feedback_type=other)</sup> [](https://app.dosu.dev/a28d3c7e-a9d3-459e-9fb6-3a6f9ff4f357/ask?utm_source=githu b) [](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/issues/35870) -- 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]
