Skip to content
This repository has been archived by the owner on Feb 14, 2025. It is now read-only.

Commit

Permalink
Set history limit to None, if unset (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Lane authored Jul 10, 2020
1 parent a6de140 commit b8e4daf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions confidant/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,8 @@ def str_env(var_name, default=''):
PYNAMO_REQUEST_TIMEOUT_SECONDS = int_env('PYNAMO_REQUEST_TIMEOUT_SECONDS', 1)
# page limit size for history API endpoints listing
HISTORY_PAGE_LIMIT = int_env('HISTORY_PAGE_LIMIT')
if HISTORY_PAGE_LIMIT == 0:
HISTORY_PAGE_LIMIT = None

# Encryption

Expand Down

0 comments on commit b8e4daf

Please # to comment.