From a669bd2c66da56079d616d9dcca47590f131b45a Mon Sep 17 00:00:00 2001 From: MCJ Vasseur <14887731+vmcj@users.noreply.github.com> Date: Sun, 24 Nov 2024 13:43:12 +0100 Subject: [PATCH] Prevent setting of the MySQL isolation See: https://github.com/DOMjudge/domjudge/issues/2848 for the explaining of the underlying issue. This affects all released DOMjudge versions. See: https://github.com/DOMjudge/domjudge/commit/792bb6c28582f27fdac5d8e63d57739beaaec538#diff-e45e45baeda1c1e73482975a664062aa56f20c03dd9d64a827aba57775bed0d3R18 --- docker/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 5cd06c9..7ad6769 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -11,7 +11,7 @@ services: - MYSQL_DATABASE=domjudge ports: - 13306:3306 - command: --max-connections=1000 --max-allowed-packet=512M + command: --max-connections=1000 --max-allowed-packet=512M --innodb_snapshot_isolation=OFF volumes: - /var/lib/mysql domjudge: