Skip to content

Commit

Permalink
setting all transition checks to true for now, pending real implement…
Browse files Browse the repository at this point in the history
…ations (#18128)
  • Loading branch information
janheise authored Feb 2, 2024
1 parent 45f9b9a commit 014f732
Showing 1 changed file with 14 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,14 @@ public void resetMigration() {

@Override
public boolean runDirectoryCompatibilityCheck() {
return false;
// TODO: add real test
return true;
}

@Override
public boolean isOldClusterStopped() {
return false;
// TODO: add real test
return true;
}

@Override
Expand All @@ -52,7 +54,8 @@ public void rollingUpgradeSelected() {

@Override
public boolean directoryCompatibilityCheckOk() {
return false;
// TODO: add real test
return true;
}

@Override
Expand All @@ -62,7 +65,8 @@ public void reindexUpgradeSelected() {

@Override
public boolean reindexingFinished() {
return false;
// TODO: add real test
return true;
}

@Override
Expand All @@ -82,16 +86,19 @@ public void startMessageProcessing() {

@Override
public boolean caDoesNotExist() {
return false;
// TODO: add real test
return true;
}

@Override
public boolean removalPolicyDoesNotExist() {
return false;
// TODO: add real test
return true;
}

@Override
public boolean caAndRemovalPolicyExist() {
return false;
// TODO: add real test
return true;
}
}

0 comments on commit 014f732

Please sign in to comment.