Skip to content

Commit

Permalink
#313: Fix causing sql imports to fail on single large transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
pirog committed Sep 2, 2017
1 parent d800c0d commit 046fbc8
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion docs/changelog/2017.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ v3.0.0-beta.12 - In Development

**SERIOUSLY, READ THE DOCS: https://docs.lndo.io/**

* Fixed bug where GitHub reported errors were not being checked correctly
* Improved handling of app directories that are deleted before `lando destroy` [#265](https://github.com/kalabox/lando/issues/265)
* Pegged `terminus` version in our Dockerfiles to reduce potential of "nasty surprises"
* Fixed bug where GitHub reported errors were not being checked correctly
* Fixed "bug" causing SQL imports to fail on single large transactions [#313](https://github.com/kalabox/lando/issues/313)

v3.0.0-beta.11 - [August 27, 2017](https://github.com/kalabox/lando/releases/tag/v3.0.0-beta.11)
-------------------------------
Expand Down
2 changes: 1 addition & 1 deletion plugins/lando-recipes/drupal6/mysql/my.cnf
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ max_binlog_size = 100M
#innodb_buffer_pool_size = 384M
#innodb_additional_mem_pool_size = 20M
# Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 100M
innodb_log_file_size = 100M
#innodb_log_buffer_size = 8M
innodb_flush_log_at_trx_commit = 0
#innodb_lock_wait_timeout = 50
Expand Down
2 changes: 1 addition & 1 deletion plugins/lando-recipes/drupal7/mysql/my.cnf
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ max_binlog_size = 100M
#innodb_buffer_pool_size = 384M
#innodb_additional_mem_pool_size = 20M
# Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 100M
innodb_log_file_size = 100M
#innodb_log_buffer_size = 8M
innodb_flush_log_at_trx_commit = 0
#innodb_lock_wait_timeout = 50
Expand Down
2 changes: 1 addition & 1 deletion plugins/lando-recipes/drupal8/mysql/my.cnf
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ max_binlog_size = 100M
#innodb_buffer_pool_size = 384M
#innodb_additional_mem_pool_size = 20M
# Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 100M
innodb_log_file_size = 100M
#innodb_log_buffer_size = 8M
innodb_flush_log_at_trx_commit = 0
#innodb_lock_wait_timeout = 50
Expand Down
2 changes: 1 addition & 1 deletion plugins/lando-recipes/laravel/mysql/my.cnf
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ max_binlog_size = 100M
#innodb_buffer_pool_size = 384M
#innodb_additional_mem_pool_size = 20M
# Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 100M
innodb_log_file_size = 100M
#innodb_log_buffer_size = 8M
innodb_flush_log_at_trx_commit = 0
#innodb_lock_wait_timeout = 50
Expand Down
4 changes: 2 additions & 2 deletions plugins/lando-recipes/pantheon/mysql/my.cnf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ default-storage-engine = innodb
# * Character sets
#
# Default is Latin1, if you need UTF-8 set all this (also in client section)
#
#
collation-server = utf8_general_ci
init-connect='SET NAMES utf8'
character-set-server = utf8
Expand Down Expand Up @@ -90,7 +90,7 @@ max_binlog_size = 100M
#innodb_buffer_pool_size = 384M
#innodb_additional_mem_pool_size = 20M
# Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 100M
innodb_log_file_size = 100M
#innodb_log_buffer_size = 8M
innodb_flush_log_at_trx_commit = 0
#innodb_lock_wait_timeout = 50
Expand Down
2 changes: 1 addition & 1 deletion plugins/lando-recipes/wordpress/mysql/my.cnf
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ max_binlog_size = 100M
#innodb_buffer_pool_size = 384M
#innodb_additional_mem_pool_size = 20M
# Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 100M
innodb_log_file_size = 100M
#innodb_log_buffer_size = 8M
innodb_flush_log_at_trx_commit = 0
#innodb_lock_wait_timeout = 50
Expand Down

0 comments on commit 046fbc8

Please sign in to comment.