From 07c612b2498f3e0f80274e6cf5f53548f3e73316 Mon Sep 17 00:00:00 2001 From: Lan_zhijiang Date: Mon, 21 Sep 2026 19:55:05 +0800 Subject: [PATCH] =?UTF-8?q?fix(deploy):=20=E9=80=9A=E8=BF=87=E6=AD=A3?= =?UTF-8?q?=E5=BC=8F=E5=9F=9F=E5=90=8D=E9=AA=8C=E6=94=B6=20Registry?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/registry_production.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/registry_production.py b/scripts/registry_production.py index 33ca8d1..dd28bd9 100644 --- a/scripts/registry_production.py +++ b/scripts/registry_production.py @@ -75,8 +75,7 @@ def main() -> None: run("docker", "push", target) run("heroku", "container:release", "web", "--app", app) run("heroku", "ps:scale", "web=1:eco", "--app", app) - # This origin proves the new app before an independently authorized DNS cutover. - smoke(existing["web_url"].rstrip("/"), os.environ["SOURCE_SHA"]) + smoke(origin, os.environ["SOURCE_SHA"]) print(f"Production app released: {app}; canonical origin: {origin}")