Skip to content
Snippets Groups Projects
Commit 41aa4f28 authored by efalcy's avatar efalcy
Browse files

dev#126106 : fix phase error

parent 8d4a9f25
1 merge request!3996Draft: Dev#126106 cosmogramme new options
Pipeline #13265 passed with stage
in 59 minutes and 27 seconds
......@@ -314,12 +314,12 @@ if (!$should_skip_records) {
// ----------------------------------------------------------------
if ($without_batch) {
$log->log('<h4>Phase de traitement des batchs: annulée</h4>');
$phase = 0.2;
$phase = 0.1;
}
if ($phase >= 0 and $phase < 0.2) {
if ($phase >= 0 and $phase < 0.1) {
startIntegrationPhase('Batchs');
$phase = 0.2;
$phase = 0.1;
}
......@@ -327,8 +327,9 @@ if (!$should_skip_records) {
// ----------------------------------------------------------------
// PSEUDO-NOTICES - cms rss sitotheque et albums (phase 0.1 a 0.6)
// ----------------------------------------------------------------
if ($phase > 0.1 and $phase < 1) {
if ($phase >= 0.1 and $phase < 1) {
include('integration/pseudo_notices.php');
$phase = 1;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment