From 6587df32694169aa0a7df4b605452556374c19f6 Mon Sep 17 00:00:00 2001 From: Chris Fuller Date: Tue, 7 Jan 2020 11:51:30 -0500 Subject: [PATCH] Changing search class name reference (#319) Currently in sentry, both SnubaSearchBackend and EventsDatasetSnubaSearchBackend exist, and they are the same. This just points to the new (renamed) class so we can delete SnubaSearchBackend from sentry, as we only left it in to transition getsentry & onpremise. --- sentry/sentry.conf.example.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sentry/sentry.conf.example.py b/sentry/sentry.conf.example.py index c6132cc..b2aedcf 100644 --- a/sentry/sentry.conf.example.py +++ b/sentry/sentry.conf.example.py @@ -134,7 +134,7 @@ SENTRY_TSDB = "sentry.tsdb.redissnuba.RedisSnubaTSDB" # SNUBA # ######### -SENTRY_SEARCH = "sentry.search.snuba.SnubaSearchBackend" +SENTRY_SEARCH = "sentry.search.snuba.EventsDatasetSnubaSearchBackend" SENTRY_SEARCH_OPTIONS = {} SENTRY_TAGSTORE_OPTIONS = {}