UBERF-9140: Pass fulltext URI (#7670)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev 2025-01-15 12:39:33 +07:00 committed by GitHub
parent d020053d35
commit 0d7c2a6509
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -94,7 +94,7 @@ export class Transactor extends DurableObject<Env> {
externalStorage: storage,
adapterSecurity: false,
disableTriggers: false,
fulltextUrl: undefined // TODO: Pass fulltext service URI.
fulltextUrl: env.FULLTEXT_URL // TODO: Pass fulltext service URI.
}
)
return await pipeline(ctx, ws, upgrade, broadcast, branding)

View File

@ -14,4 +14,6 @@ interface Env {
STATS_URL: string | undefined
ENABLE_COMPRESSION: string | undefined
FULLTEXT_URL: string | undefined
}