Skip to content

Commit

Permalink
Disable limits true by default (#803)
Browse files Browse the repository at this point in the history
  • Loading branch information
michielderoos committed Apr 13, 2022
1 parent 34c7367 commit 1e85113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@

PROGRAM_NAME = config_parser['APP']['PROGRAM_NAME']

DISABLE_LIMITS = config_parser['APP'].getboolean('DISABLE_LIMITS', False)
DISABLE_LIMITS = config_parser['APP'].getboolean('DISABLE_LIMITS', True)
APP_HOST = config_parser['APP']['APP_HOST']
REQUIRE_MULTIPLE_APPROVALS = config_parser['APP'].getboolean('REQUIRE_MULTIPLE_APPROVALS', False)
ALLOWED_APPROVERS = config_parser['APP'].get('allowed_approvers', None)
Expand Down

0 comments on commit 1e85113

Please sign in to comment.