ci: fix remaining ietf db name references

This commit is contained in:
Nicolas Giard 2023-04-25 12:53:00 -04:00 committed by GitHub
parent 9a2fa59977
commit d1ae52de9b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -9,7 +9,7 @@ DATABASES = {
'default': { 'default': {
'HOST': '__DBHOST__', 'HOST': '__DBHOST__',
'PORT': 5432, 'PORT': 5432,
'NAME': 'ietf', 'NAME': 'datatracker',
'ENGINE': 'django.db.backends.postgresql_psycopg2', 'ENGINE': 'django.db.backends.postgresql_psycopg2',
'USER': 'django', 'USER': 'django',
'PASSWORD': 'RkTkDPFnKpko', 'PASSWORD': 'RkTkDPFnKpko',

View file

@ -24,7 +24,7 @@ chmod +x ./app-create-dirs.sh
if [ -n "$PGHOST" ]; then if [ -n "$PGHOST" ]; then
echo "Altering PG search path..." echo "Altering PG search path..."
psql -U django -h $PGHOST -d ietf -v ON_ERROR_STOP=1 -c '\x' -c 'ALTER USER django set search_path=datatracker,public;' psql -U django -h $PGHOST -d datatracker -v ON_ERROR_STOP=1 -c '\x' -c 'ALTER USER django set search_path=datatracker,public;'
fi fi
echo "Running Datatracker checks..." echo "Running Datatracker checks..."

View file

@ -9,7 +9,7 @@ DATABASES = {
'default': { 'default': {
'HOST': '__DBHOST__', 'HOST': '__DBHOST__',
'PORT': 5432, 'PORT': 5432,
'NAME': 'ietf', 'NAME': 'datatracker',
'ENGINE': 'django.db.backends.postgresql_psycopg2', 'ENGINE': 'django.db.backends.postgresql_psycopg2',
'USER': 'django', 'USER': 'django',
'PASSWORD': 'RkTkDPFnKpko', 'PASSWORD': 'RkTkDPFnKpko',