Skip to content

Commit 74566e6

Browse files
committed
Fix handler name for service
1 parent e66f813 commit 74566e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
def search_handler():
3131
"""Get or create a SearchService instance for a tenant."""
3232
tenant = tenant_handler.tenant()
33-
handler = tenant_handler.handler("postgresFTSSearch", "postgresfts", tenant)
33+
handler = tenant_handler.handler("postgresFts", "postgresfts", tenant)
3434
if handler is None:
35-
config_handler = RuntimeConfig("postgresFTSSearch", app.logger)
35+
config_handler = RuntimeConfig("postgresFts", app.logger)
3636
config = config_handler.tenant_config(tenant)
3737
handler = tenant_handler.register_handler(
3838
"postgresfts", tenant, PostgresFTSClient(tenant, app.logger, config)

0 commit comments

Comments
 (0)