Skip to content

Commit

Permalink
Do not create user database
Browse files Browse the repository at this point in the history
  • Loading branch information
Sibyx committed Mar 24, 2024
1 parent b0399db commit 02529f9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions apps/core/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import os
import random
import string
import subprocess
from difflib import HtmlDiff
from json import JSONDecodeError
from time import sleep
Expand Down Expand Up @@ -95,7 +94,7 @@ def run(self):
"DATABASE_HOST": settings.DATABASES["default"]["HOST"],
# 'DATABASE_HOST': 'docker.for.mac.localhost',
"DATABASE_PORT": settings.DATABASES["default"]["PORT"],
"DATABASE_NAME": self._database_name,
"DATABASE_NAME": self._task.assigment.database,
"DATABASE_USER": self._database_name,
"DATABASE_PASSWORD": self._database_password,
},
Expand Down

0 comments on commit 02529f9

Please sign in to comment.