Support nodelist archives with more than 1 file in it

This commit is contained in:
2024-06-15 15:12:09 +10:00
parent 941117b342
commit 180c620168
4 changed files with 31 additions and 31 deletions

View File

@@ -10,12 +10,10 @@ use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Facades\Log;
use App\Models\{Domain,Filearea};
use App\Traits\Import as ImportTrait;
class FileareaImport implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
use ImportTrait;
protected const LOGKEY = 'JFI';
private const importkey = 'filearea';
@@ -102,4 +100,4 @@ class FileareaImport implements ShouldQueue
Log::info(sprintf('%s:= Updated %d records',self::LOGKEY,$p));
}
}
}