Skip to content
Snippets Groups Projects
Commit c67bfcbc authored by Alex Arnaud's avatar Alex Arnaud
Browse files

Dev#163369 : handle first harvest warning

parent 7c39b0aa
Branches
Tags
1 merge request!4710Dev#163369 connecteur cvs
Pipeline #22805 failed with stage
in 23 minutes and 20 seconds
......@@ -39,6 +39,21 @@ class Cvs2_Harvester extends Class_DigitalResource_Harvester_XML {
}
public function isDone() {
xdebug_break();
foreach($this->_config->documentTypes() as $name)
if (!$this->_catalogueIsDone($name))
return false;
return true;
}
protected function _catalogueIsDone($name) {
return Class_WebService_HarvestLog::findFirstBy(['type_doc' => 'Cvs2_' . $name]);
}
protected function _intro() {
$this->_log($this->_('%s : Début %s pour %s à %s.',
$this->_name,
......
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