fix(hasura): ignore already-untracked errors in bootstrap
This commit is contained in:
@@ -51,7 +51,7 @@ function isAlreadyExistsError(errText) {
|
|||||||
|
|
||||||
function isMissingRelationError(errText) {
|
function isMissingRelationError(errText) {
|
||||||
const t = String(errText || '').toLowerCase();
|
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) {
|
function normalizeName(name) {
|
||||||
|
|||||||
Reference in New Issue
Block a user