justinpark commented on code in PR #36644:
URL: https://github.com/apache/superset/pull/36644#discussion_r2624777662
##########
superset-frontend/src/extensions/ExtensionsManager.ts:
##########
@@ -57,15 +57,19 @@ class ExtensionsManager {
* @throws Error if initialization fails.
*/
public async initializeExtensions(): Promise<void> {
- const response = await SupersetClient.get({
- endpoint: '/api/v1/extensions/',
- });
- const extensions: core.Extension[] = response.json.result;
- await Promise.all(
- extensions.map(async extension => {
- await this.initializeExtension(extension);
- }),
- );
+ try {
Review Comment:
ops. it's not supposed to be here.
--
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]