From 392458ad993772f03a250329248b9cc6475056c3 Mon Sep 17 00:00:00 2001 From: u1 Date: Sat, 10 Jan 2026 01:16:24 +0000 Subject: [PATCH] fix(hasura): ignore already-untracked errors in bootstrap --- kustomize/base/hasura/hasura-bootstrap.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kustomize/base/hasura/hasura-bootstrap.mjs b/kustomize/base/hasura/hasura-bootstrap.mjs index 83d4cdd..7b06f08 100644 --- a/kustomize/base/hasura/hasura-bootstrap.mjs +++ b/kustomize/base/hasura/hasura-bootstrap.mjs @@ -51,7 +51,7 @@ function isAlreadyExistsError(errText) { function isMissingRelationError(errText) { const t = String(errText || '').toLowerCase(); - return t.includes('does not exist') || t.includes('not found') || t.includes('not tracked'); + return t.includes('does not exist') || t.includes('not found') || t.includes('not tracked') || t.includes('already untracked'); } function normalizeName(name) {