diff --git a/app/Jobs/TicProcess.php b/app/Jobs/TicProcess.php index aa8b56f..2708558 100644 --- a/app/Jobs/TicProcess.php +++ b/app/Jobs/TicProcess.php @@ -63,8 +63,7 @@ class TicProcess implements ShouldQueue $to = new Tic; try { - $fo = $to->load($this->file) - ->save(); + $fo = $to->load($this->file); } catch (\Exception $e) { Log::error(sprintf('%s:! Error loading TIC file [%s] (%s)',self::LOGKEY,$rel_name,$e->getMessage())); @@ -72,6 +71,8 @@ class TicProcess implements ShouldQueue return; } + $fo->save(); + Log::info(sprintf('%s:= Processed [%s] storing [%s] as id [%d]',self::LOGKEY,$this->file,$to->file->name,$to->file->id)); if (config('fido.packet_keep')) { @@ -99,6 +100,6 @@ class TicProcess implements ShouldQueue } if ($to->isNodelist()) - NodelistImport::dispatch($fo,$this->domain); + NodelistImport::dispatch($fo->withoutRelations(),$this->domain); } } \ No newline at end of file