We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f876b22 commit ab01506Copy full SHA for ab01506
experimenter/experimenter/settings.py
@@ -10,6 +10,7 @@
10
https://docs.djangoproject.com/en/1.9/ref/settings/
11
"""
12
13
+import os
14
from pathlib import Path
15
from urllib.parse import urljoin
16
@@ -74,7 +75,7 @@
74
75
76
GLEAN_UPLOAD_ENABLED = config("GLEAN_UPLOAD_ENABLED", default=False, cast=bool)
77
-GLEAN_DATA_DIR = config("GLEAN_DATA_DIR", default="/var/glean")
78
+GLEAN_DATA_DIR = Path(config("GLEAN_DATA_DIR", default="/var/glean")) / str(os.getpid())
79
80
# Application definition
81
0 commit comments