refactor(instanceService): remove CNAME block check for improved instance handling

This commit is contained in:
Ben Allfree 2025-07-18 21:03:33 -07:00
parent 263700495f
commit 60eeb5cb05

View File

@ -254,9 +254,6 @@ export const instanceService = mkSingleton(async (config: InstanceServiceConfig)
} }
}) })
if (instance) { if (instance) {
if (!instance.cname_active) {
throw new Error(`CNAME blocked.`)
}
dbg(`${host} is a cname`) dbg(`${host} is a cname`)
cache.setItem(instance) cache.setItem(instance)
return instance return instance