Skip to content

Commit

Permalink
Merge pull request #2725 from PnX-SI/feat/celery-utc-no
Browse files Browse the repository at this point in the history
celery: enable_utc=False
  • Loading branch information
camillemonchicourt authored Sep 27, 2023
2 parents d533d82 + 9dbf224 commit 299853b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions backend/geonature/utils/config_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ class MailConfig(Schema):
class CeleryConfig(Schema):
broker_url = fields.String(load_default="redis://localhost:6379/0")
result_backend = fields.String(load_default="redis://localhost:6379/0")
enable_utc = fields.Boolean(load_default=False)
timezone = fields.String(load_default=None)


class AccountManagement(Schema):
Expand Down

0 comments on commit 299853b

Please sign in to comment.