Skip to content

Commit

Permalink
change mysql image to 8.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
piket committed Nov 1, 2023
1 parent eb1bf32 commit 83ee36f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class MySQLOnlineStoreCreator(OnlineStoreCreator):
def __init__(self, project_name: str, **kwargs):
super().__init__(project_name)
self.container = (
MySqlContainer("mysql:8.2.0", platform="linux/amd64")
MySqlContainer("mysql:8.1.0", platform="linux/amd64")
.with_exposed_ports(3306)
.with_env("MYSQL_USER", "root")
.with_env("MYSQL_PASSWORD", "test")
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/tests/unit/test_sql_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def pg_registry():
@pytest.fixture(scope="session")
def mysql_registry():
container = (
DockerContainer("mysql:8.2.0")
DockerContainer("mysql:8.1.0")
.with_exposed_ports(3306)
.with_env("MYSQL_RANDOM_ROOT_PASSWORD", "true")
.with_env("MYSQL_USER", POSTGRES_USER)
Expand Down

0 comments on commit 83ee36f

Please sign in to comment.