Skip to content

Commit

Permalink
Add LC_MESSAGES_DIR
Browse files Browse the repository at this point in the history
  • Loading branch information
cataphract committed May 22, 2024
1 parent 5628458 commit f89da8a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion utils/_context/containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,8 @@ def execute_command(self, test, retries=10, interval=1_000_000_000, start_period
return

except APIError as e:
logger.debug(f"Try #{i} failed for {self._container.name}: {e.explanation}")
logger.exception(f"Try #{i} failed for {self._container.name}: {e.explanation}")
break

except Exception as e:
logger.debug(f"Try #{i}: {e}")
Expand Down Expand Up @@ -676,6 +677,7 @@ def __init__(self, host_log_folder) -> None:
"MYSQL_USER": "mysqldb",
"MYSQL_ROOT_PASSWORD": "mysqldb",
"MYSQL_PASSWORD": "mysqldb",
"LC_MESSAGES_DIR": "/usr/share/mysql-8.0/english",
},
allow_old_container=True,
host_log_folder=host_log_folder,
Expand Down

0 comments on commit f89da8a

Please sign in to comment.