Skip to content
Snippets Groups Projects
Commit 15b654bb authored by Guillaume Heurtier's avatar Guillaume Heurtier
Browse files

FEAT #11271 TIME 0:20 changed format of process limit date

parent 25e76bab
No related branches found
No related tags found
No related merge requests found
......@@ -144,7 +144,9 @@ class IndexingController
$processLimitDate = IndexingController::calculateProcessDate(['date' => date('c'), 'delay' => $delay]);
return $response->withJson(['processLimitDate' => $processLimitDate]);
$processLimitDate = explode(' ', $processLimitDate);
return $response->withJson(['processLimitDate' => $processLimitDate[0]]);
}
public static function getEntitiesChildrenLevel($aArgs = [])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment