Skip to content

Commit

Permalink
disable CachedQueryResult
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-lopreiato committed Dec 30, 2020
1 parent 284908d commit cd50970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/common/queries/database_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class CachedDatabaseQuery(DatabaseQuery, Generic[QueryReturn]):
)
CACHE_KEY_FORMAT: str = ""
CACHE_VERSION: int = 0
CACHING_ENABLED: bool = True
CACHING_ENABLED: bool = False
_cache_key: Optional[str] = None

def __init__(self, *args, **kwargs) -> None:
Expand Down

0 comments on commit cd50970

Please sign in to comment.