You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2019/06/30 21:39:33 UTC

[airavata] branch develop updated: AIRAVATA-2588 Set collation to case-sensitive

This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata.git


The following commit(s) were added to refs/heads/develop by this push:
     new a410c47  AIRAVATA-2588 Set collation to case-sensitive
a410c47 is described below

commit a410c47cb61e40f6ca165800668e33790d211518
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Sun Jun 30 17:39:07 2019 -0400

    AIRAVATA-2588 Set collation to case-sensitive
---
 dev-tools/ansible/roles/django/templates/settings_local.py.j2 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tools/ansible/roles/django/templates/settings_local.py.j2 b/dev-tools/ansible/roles/django/templates/settings_local.py.j2
index fc71c3a..1a29bbf 100644
--- a/dev-tools/ansible/roles/django/templates/settings_local.py.j2
+++ b/dev-tools/ansible/roles/django/templates/settings_local.py.j2
@@ -49,7 +49,7 @@ DATABASES = {
         'PASSWORD': '{{ django_db_password }}'
     },
     'OPTIONS': {
-        'init_command': 'SET default_storage_engine=INNODB',
+        'init_command': 'SET default_storage_engine=INNODB,collation_connection=utf8_bin',
     }
 }