Skip to content
Snippets Groups Projects
Commit cbf359d4 authored by Andreas Ellewsen's avatar Andreas Ellewsen
Browse files

Merge branch 'GREG-159-djangoq-config' into 'master'

Move djangoq settings to base settings

See merge request !222
parents 0ae70f5a 883fdbee
No related branches found
No related tags found
1 merge request!222Move djangoq settings to base settings
Pipeline #107968 passed
...@@ -304,3 +304,15 @@ ORGREG_EXTRA_IDS = [] ...@@ -304,3 +304,15 @@ ORGREG_EXTRA_IDS = []
# Acronyms to be imported as identifiers from orgreg. List of acronym values, supported ones are: nob, nno, eng # Acronyms to be imported as identifiers from orgreg. List of acronym values, supported ones are: nob, nno, eng
# Example list: ["nob"] # Example list: ["nob"]
ORGREG_ACRONYMS = [] ORGREG_ACRONYMS = []
# Settings related to Django-q used for scheduling tasks in the future.
# We use it to queue creation of Notification objects related to roles when start/end dates are in the future
Q_CLUSTER = {
"name": "greg",
"workers": 4,
"timeout": 90,
"retry": 120,
"queue_limit": 50,
"bulk": 10,
"orm": "default",
}
...@@ -30,16 +30,12 @@ CEREBRUM_CLIENT = { ...@@ -30,16 +30,12 @@ CEREBRUM_CLIENT = {
} }
CEREBRUM_HIERARCHICAL_ACCESS = True CEREBRUM_HIERARCHICAL_ACCESS = True
Q_CLUSTER = {
"name": "greg", Q_CLUSTER.update(
"workers": 4, {
"timeout": 90, "sync": True,
"retry": 120, }
"queue_limit": 50, )
"bulk": 10,
"orm": "default",
"sync": True,
}
AUTHENTICATION_BACKENDS = [ AUTHENTICATION_BACKENDS = [
"gregui.authentication.auth_backends.DevBackend", # Fake dev backend "gregui.authentication.auth_backends.DevBackend", # Fake dev backend
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment