lh 2 days ago
parent
commit
7909e2f70e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/Console/Commands/ProcessBatchEpisodeGenerationCommand.php

+ 2 - 2
app/Console/Commands/ProcessBatchEpisodeGenerationCommand.php

@@ -144,7 +144,7 @@ class ProcessBatchEpisodeGenerationCommand extends Command
                         ->update([
                             'status' => 'completed',
                             'completed_at' => now(),
-                            'updated_at' => now()
+                            // 'updated_at' => now()
                         ]);
                     
                     return 0;
@@ -210,7 +210,7 @@ class ProcessBatchEpisodeGenerationCommand extends Command
                         'status' => 'completed',
                         'result_data' => json_encode($result, JSON_UNESCAPED_UNICODE),
                         'completed_at' => now(),
-                        'updated_at' => now()
+                        // 'updated_at' => now()
                     ]);
 
                 dLog('command')->info('[' . date('Y-m-d H:i:s') . '] 第' . $task->episode_number . '集生成成功');