mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 21:43:21 +00:00
[manual] Change references to the humbug_test user, schema, and database to zulip_test
This requires no changes in production, but is tagged as manual to remind developers that they need to edit and run the tools/migrate-db script to fix up their local database instances. (imported from commit fbf764fb61592ef994d6d2ad56edad65ff01f14b)
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
from settings import *
|
||||
import os
|
||||
|
||||
DATABASES["default"] = {"NAME": "humbug_test",
|
||||
"USER": "humbug_test",
|
||||
DATABASES["default"] = {"NAME": "zulip_test",
|
||||
"USER": "zulip_test",
|
||||
"PASSWORD": "xxxxxxxxxxxx",
|
||||
"HOST": "localhost",
|
||||
"SCHEMA": "humbug",
|
||||
"SCHEMA": "zulip",
|
||||
"ENGINE": "django.db.backends.postgresql_psycopg2",
|
||||
"TEST_NAME": "django_humbug_tests",
|
||||
"TEST_NAME": "django_zulip_tests",
|
||||
"OPTIONS": { },}
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@ TUTORIAL_ENABLED = False
|
||||
# Disable use of memcached for caching
|
||||
CACHES['database'] = {
|
||||
'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
|
||||
'LOCATION': 'humbug-database-test-cache',
|
||||
'LOCATION': 'zulip-database-test-cache',
|
||||
'TIMEOUT': 3600,
|
||||
'OPTIONS': {
|
||||
'MAX_ENTRIES': 100000
|
||||
|
||||
Reference in New Issue
Block a user