From cefa490f5fe06c5ffcd99b9c951b240cf18de7e8 Mon Sep 17 00:00:00 2001 From: Brad Brown Date: Tue, 28 Jun 2022 08:25:26 -0500 Subject: [PATCH] use ttl hash on score pull --- wordlinator/web/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wordlinator/web/__init__.py b/wordlinator/web/__init__.py index 34b0f41..59ebf8d 100644 --- a/wordlinator/web/__init__.py +++ b/wordlinator/web/__init__.py @@ -85,7 +85,7 @@ def _scores_from_db(round_id, ttl_hash=None): def scores_from_db(round_id): - return _scores_from_db(round_id) + return _scores_from_db(round_id, get_ttl_hash()) #######################