Use the mariadb jdbc connector in gerrit
Upstream stable-3.2 and stable-3.3 branches have been fixed to allow us to use the mariadb jdbc connector. The previous change has updated our images to ensure they include this fix. We can now update the config to use the mariadb connector. Change-Id: I43ac20d601ff88e42f0d20387fc6ad8842ab8244
This commit is contained in:
@@ -4,10 +4,7 @@
|
||||
{% endif %}
|
||||
{% if gerrit_reviewdb_database_type == 'mariadb_container' %}
|
||||
[accountPatchReviewDb]
|
||||
# NOTE(ianw) 2021-07-19 : the mariadb connector throws errors because
|
||||
# it doesn't seem to handle duplicate key detection. Investigation
|
||||
# upstream TBC.
|
||||
url = jdbc:mysql://127.0.0.1:3306/{{ gerrit_reviewdb_mariadb_dbname }}?sessionVariables=character_set_client=utf8,character_set_results=utf8,character_set_connection=utf8,collation_connection=utf8_unicode_ci,collation_database=utf8_unicode_ci,collation_server=utf8_unicode_ci&user={{ gerrit_reviewdb_mariadb_username }}&password={{ gerrit_reviewdb_mariadb_password }}
|
||||
url = jdbc:mariadb://127.0.0.1:3306/{{ gerrit_reviewdb_mariadb_dbname }}?sessionVariables=character_set_client=utf8,character_set_results=utf8,character_set_connection=utf8,collation_connection=utf8_unicode_ci,collation_database=utf8_unicode_ci,collation_server=utf8_unicode_ci&user={{ gerrit_reviewdb_mariadb_username }}&password={{ gerrit_reviewdb_mariadb_password }}
|
||||
{% endif %}
|
||||
[auth]
|
||||
registerEmailPrivateKey = {{ gerrit_email_private_key }}
|
||||
|
||||
Reference in New Issue
Block a user