Skip to content

Commit

Permalink
fix: install mysql from requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian2012 committed Sep 23, 2024
1 parent f916839 commit 30146a0
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,11 @@
from superset.models.dashboard import Dashboard
from superset.models.slice import Slice
from superset.connectors.sqla.models import SqlaTable
from superset.utils.database import get_or_create_db
from superset.models.embedded_dashboard import EmbeddedDashboard

from pythonpath.create_assets_utils import load_configs_from_directory
from pythonpath.localization import get_translation
from pythonpath.create_row_level_security import create_rls_filters
from openedx.create_assets_utils import load_configs_from_directory
from openedx.localization import get_translation
from openedx.create_row_level_security import create_rls_filters


logger = logging.getLogger("create_assets")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""

from superset.extensions import security_manager
from pythonpath.localization import get_translation, DATASET_STRINGS
from openedx.localization import get_translation, DATASET_STRINGS
from superset import security_manager
import logging
from flask import g
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
across Superset installations.
"""

from create_assets import BASE_DIR, ASSET_FOLDER_MAPPING, app
from create_assets import app

import json
import logging
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ ruamel-yaml==0.18.6
sentry-sdk[flask]
urllib3>=1.26.15,<2
gevent # Used to improve celery worker performance on I/O tasks
mysqlclient=2.1.0
mysqlclient==2.1.0

0 comments on commit 30146a0

Please sign in to comment.