Skip to content

Commit

Permalink
Merge pull request #107 from aksm/ISSUE-105-1.0.0
Browse files Browse the repository at this point in the history
Issue-105: Transaction Isolation Level
  • Loading branch information
DiegoPino authored Feb 28, 2023
2 parents 5c49dd5 + 47acf5b commit 7a1d1d2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deploy/ec2-docker/docker-compose-aws-s3-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ services:
- /drupalconfig
db:
image: mariadb:10.6.8-focal
command: --default-authentication-plugin=mysql_native_password --binlog-expire-logs-seconds=172800 --max_allowed_packet=256M --sort_buffer_size=512K --lower_case_table_names=1
command: --binlog-expire-logs-seconds=172800 --max_allowed_packet=256M --sort_buffer_size=512K --lower_case_table_names=1 --transaction-isolation=READ-COMMITTED --log-bin=mysqld-bin
container_name: esmero-db
restart: always
environment:
Expand Down
2 changes: 1 addition & 1 deletion deploy/ec2-docker/docker-compose-aws-s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ services:
- /drupalconfig
db:
image: mysql:8.0.28
command: mysqld --default-authentication-plugin=mysql_native_password --binlog-expire-logs-seconds=172800 --max_allowed_packet=256M
command: mysqld --binlog-expire-logs-seconds=172800 --max_allowed_packet=256M --transaction-isolation=READ-COMMITTED --log-bin=mysqld-bin
container_name: esmero-db
restart: always
environment:
Expand Down
2 changes: 1 addition & 1 deletion deploy/ec2-docker/docker-compose-selfsigned.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ services:
- /drupalconfig
db:
image: mysql:8.0.28
command: mysqld --default-authentication-plugin=mysql_native_password --binlog-expire-logs-seconds=172800 --max_allowed_packet=256M
command: mysqld --binlog-expire-logs-seconds=172800 --max_allowed_packet=256M --transaction-isolation=READ-COMMITTED --log-bin=mysqld-bin
container_name: esmero-db
restart: always
environment:
Expand Down

0 comments on commit 7a1d1d2

Please sign in to comment.