We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfb1652 commit c6aeb57Copy full SHA for c6aeb57
1 file changed
src/server/lib/fastly.ts
@@ -33,7 +33,11 @@ class Fastly {
33
34
async getFastlyUrl(): Promise<string> {
35
const { domainDefaults } = await GlobalConfigService.getInstance().getAllConfigs();
36
- return `fastly.${domainDefaults.http}`;
+ // TEMP PATCH:
37
+ // Fastly services for current env are named under fastly.<base-domain> (without "lifecycle.").
38
+ // This is an interim compatibility fix for lookup failures and should be reworked when
39
+ // Fastly naming/configuration is moved to a dedicated integration.
40
+ return `fastly.${domainDefaults.http.replace(/^lifecycle\./, '')}`;
41
}
42
43
async getCacheKey(uuid: string, fastlyServiceType = ''): Promise<string> {
0 commit comments