We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b203d8b commit 1d290e0Copy full SHA for 1d290e0
docker-compose.yml
@@ -52,3 +52,9 @@ services:
52
- psql-data:/var/lib/postgresql/data
53
ports:
54
- 54321:5432
55
+ healthcheck:
56
+ test: pg_isready
57
+ interval: 30s
58
+ timeout: 60s
59
+ retries: 5
60
+ start_period: 80s
ynr/settings/base.py
@@ -454,6 +454,10 @@ def root(*path):
454
"SOPN_UPDATE_NOTIFICATION_EMAILS", "[email protected]"
455
).split(",")
456
457
+# The maximum number of fields that can be uploaded in a single request.
458
+DATA_UPLOAD_MAX_NUMBER_FIELDS = 3000
459
+
460
461
# import application constants
462
from .constants.needs_review import * # noqa
463
from .constants.csv_fields import * # noqa
0 commit comments