This commit is contained in:
Victor Ng 2020-09-01 21:33:07 -04:00
Родитель 4b7138fcb2
Коммит 6843ae82bb
3 изменённых файлов: 2 добавлений и 4 удалений

0
bin/taar-redis.py Normal file → Executable file
Просмотреть файл

Просмотреть файл

@ -3,7 +3,7 @@ from setuptools import find_packages, setup
setup(
name="mozilla-taar3",
use_scm_version=False,
version="0.7.3",
version="0.7.4",
setup_requires=["setuptools_scm", "pytest-runner"],
tests_require=["pytest"],
include_package_data=True,

Просмотреть файл

@ -418,8 +418,8 @@ class TAARCache:
return
self._last_db = db_num
self._build_similarity_features_caches(db)
self.logger.info("Completed precomputing normalized data")
def _build_similarity_features_caches(self, db):
"""
@ -639,8 +639,6 @@ class TAARCache:
self._copy_data(next_active_db)
self.logger.info("Completed precomputing normalized data")
self._r0.set(ACTIVE_DB, next_active_db)
self.logger.info(f"Active DB is set to {next_active_db}")