ImportSource: set last_attempt on every attempt

This commit is contained in:
Thomas Gelf 2016-06-26 16:00:43 +02:00
parent 6e4940d712
commit 38fec2c3d5
1 changed files with 2 additions and 1 deletions

View File

@ -81,6 +81,7 @@ class ImportSource extends DbObjectWithSettings
Benchmark::measure('Starting with import ' . $this->source_name);
try {
$import = new Import($this);
$this->last_attempt = date('Y-m-d H:i:s');
if ($import->providesChanges()) {
Benchmark::measure('Found changes for ' . $this->source_name);
$this->hadChanges = true;
@ -99,7 +100,7 @@ class ImportSource extends DbObjectWithSettings
} catch (Exception $e) {
$this->import_state = 'failing';
Benchmark::measure('Import failed for ' . $this->source_name);
$this->last_error_message = 'ERR: ' . $e->getMessage();
$this->last_error_message = $e->getMessage();
}
if ($this->hasBeenModified()) {