Skip to content

Commit

Permalink
Reduce cache duration to 1 minute
Browse files Browse the repository at this point in the history
  • Loading branch information
cburmeister committed Dec 14, 2021
1 parent fa47577 commit c4a19ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
app.config['SECRET_KEY'] = os.environ['SECRET_KEY']
app.config['CACHE_TYPE'] = 'filesystem'
app.config['CACHE_DIR'] = '/tmp'
app.config['CACHE_DEFAULT_TIMEOUT'] = 60 * 5
app.config['CACHE_DEFAULT_TIMEOUT'] = 60 * 1

auth = HTTPBasicAuth()
cache = Cache(app)
Expand Down

0 comments on commit c4a19ae

Please sign in to comment.