devstack attempts to set bind-address, sql_mode, default-storage-engine,
max_connections, query_cache_type and query_cache_size.
However the bash command is missing some '&&'s and was omiting
max_connections, query_cache_type and query_cache_size.
Change-Id: I24388b5de777995f92d73076524122cf599d6371
| ... | ... |
@@ -95,9 +95,9 @@ function configure_database_mysql {
|
| 95 | 95 |
sudo bash -c "source $TOP_DIR/functions && \ |
| 96 | 96 |
iniset $my_conf mysqld bind-address "$SERVICE_LISTEN_ADDRESS" && \ |
| 97 | 97 |
iniset $my_conf mysqld sql_mode STRICT_ALL_TABLES && \ |
| 98 |
- iniset $my_conf mysqld default-storage-engine InnoDB \ |
|
| 99 |
- iniset $my_conf mysqld max_connections 1024 \ |
|
| 100 |
- iniset $my_conf mysqld query_cache_type OFF \ |
|
| 98 |
+ iniset $my_conf mysqld default-storage-engine InnoDB && \ |
|
| 99 |
+ iniset $my_conf mysqld max_connections 1024 && \ |
|
| 100 |
+ iniset $my_conf mysqld query_cache_type OFF && \ |
|
| 101 | 101 |
iniset $my_conf mysqld query_cache_size 0" |
| 102 | 102 |
|
| 103 | 103 |
|