bypass host maintainance

This commit is contained in:
Pearl Dsilva 2026-05-08 14:32:33 -04:00
parent 111122558f
commit bcabdafc47
2 changed files with 10 additions and 0 deletions

View File

@ -51,4 +51,9 @@ public class PostMigrationCommand extends Command {
public boolean executeInSequence() {
return true;
}
@Override
public boolean isBypassHostMaintenance() {
return true;
}
}

View File

@ -53,4 +53,9 @@ public class PreMigrationCommand extends Command {
public boolean executeInSequence() {
return true;
}
@Override
public boolean isBypassHostMaintenance() {
return true;
}
}