code review feedback

This commit is contained in:
Kenneth Kehl
2024-05-13 07:35:14 -07:00
parent bbd1fed737
commit e7183da117

View File

@@ -82,8 +82,6 @@ def incr_jobs_cache_misses():
redis_store.set(JOBS_CACHE_MISSES, 1)
else:
redis_store.incr(JOBS_CACHE_MISSES)
redis_store.get(JOBS_CACHE_HITS).decode("utf-8")
redis_store.get(JOBS_CACHE_MISSES).decode("utf-8")
def incr_jobs_cache_hits():
@@ -91,8 +89,6 @@ def incr_jobs_cache_hits():
redis_store.set(JOBS_CACHE_HITS, 1)
else:
redis_store.incr(JOBS_CACHE_HITS)
redis_store.get(JOBS_CACHE_HITS).decode("utf-8")
redis_store.get(JOBS_CACHE_MISSES).decode("utf-8")
def extract_phones(job):