Stop the slugifier from deleting the letter D-stroke

This commit is contained in:
2026-08-19 13:07:13 +07:00
parent 24c55d1627
commit 4490a1abf0
14 changed files with 739 additions and 198 deletions
+11 -1
View File
@@ -21,7 +21,17 @@ import urllib.error
import urllib.request
APP_NAME = "medical-chatbot-app"
IMAGES = ("vsf-duocthu-ai-service", "vsf-duocthu-web")
IMAGES = (
"vsf-duocthu-ai-service",
"vsf-duocthu-web",
# Added 2026-08-19. These were excluded because this script fails the
# whole run if a tag it expects to rewrite is not already inline on the
# Application, and their image blocks were not there yet. They are now,
# so leaving these out would instead pin auth-service and api-gateway
# at whatever SHA they were first deployed with, silently, forever.
"vsf-duocthu-auth-service",
"vsf-duocthu-api-gateway",
)
def call(base: str, method: str, path: str, token: str | None = None, body=None):