Skip to content

Commit

Permalink
Fix broken var
Browse files Browse the repository at this point in the history
  • Loading branch information
raymondjacobson committed Jan 10, 2023
1 parent 21fbfe6 commit b356b4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion discovery-provider/src/queries/get_health.py
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ def get_play_health_info(
latest_db_play = float(latest_db_play.decode())
latest_db_play = datetime.utcfromtimestamp(latest_db_play)

oldest_unarchived_play = redis.get(redis, oldest_unarchived_play_key)
oldest_unarchived_play = redis.get(oldest_unarchived_play_key)
if not oldest_unarchived_play:
# Query and cache oldest unarchived play
oldest_unarchived_play = get_oldest_unarchived_play()
Expand Down

0 comments on commit b356b4a

Please sign in to comment.