peterguo 1 week ago
parent
commit
d50ada7ccd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Console/Commands/AddBimToConvertQueue.php

+ 1 - 1
app/Console/Commands/AddBimToConvertQueue.php

@@ -34,7 +34,7 @@ class AddBimToConvertQueue extends Command
         BimFile::query()
             ->where("created_at", ">=", Carbon::now()->subDay())
             ->whereIn("convert_status", [BimFileConvertStatus::NotAdded->value, BimFileConvertStatus::FAILED_TO_ADD_QUEUE->value])
-            ->where("bim_driver", BIMDriverEnum::BLACK_HOLE->value)
+            ->whereIn("bim_driver", [BimDriverEnum::BLACK_HOLE->value, BIMDriverEnum::GLENDALE->value])
             ->chunkById(2000, function (Collection $bimFiles) {
                 $this->pushToQueue($bimFiles);
             });