Don't call SQLBaseStore methods from outside stores

This commit is contained in:
Erik Johnston 2019-12-04 10:16:44 +00:00
parent 3eb15c01d9
commit c2f525a525
4 changed files with 20 additions and 19 deletions

View file

@ -542,8 +542,8 @@ def phone_stats_home(hs, stats, stats_process=_stats_process):
# Database version
#
stats["database_engine"] = hs.get_datastore().database_engine_name
stats["database_server_version"] = hs.get_datastore().get_server_version()
stats["database_engine"] = hs.database_engine.module.__name__
stats["database_server_version"] = hs.database_engine.server_version
logger.info("Reporting stats to %s: %s" % (hs.config.report_stats_endpoint, stats))
try:
yield hs.get_proxied_http_client().put_json(