last step

This commit is contained in:
Eric Espie
2026-04-17 15:07:53 +02:00
parent 8088fdc322
commit 0b6e7d3258

View File

@@ -69,12 +69,14 @@ class DataAuditSequencer extends StepSequencer
if ($this->IsDataAuditRequired()) {
return $this->GetNextStep('setup-audit', 'Checking data consistency with the new data model', 70, $sMessage);
}
return $this->GetNextStep('', 'Completed', 100);
return $this->GetNextStep('complete', 'Completed', 100);
case 'setup-audit':
if ($this->IsDataAuditRequired()) {
$this->oRunTimeEnvironment->DataToCleanupAudit();
}
$this->oRunTimeEnvironment->DataToCleanupAudit();
return $this->GetNextStep('complete', 'Completed', 100);
case 'complete':
sleep(1);
return $this->GetNextStep('', 'Completed', 100);
default: