Deploy Ladill Meet / deploy (push) Successful in 52s
Capture stage spotlight video for browser recordings, fail incomplete uploads, allow post-session host uploads, and expire stale processing recordings automatically. Co-authored-by: Cursor <cursoragent@cursor.com>
23 lines
553 B
PHP
23 lines
553 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Services\Meet\RecordingService;
|
|
use Illuminate\Console\Command;
|
|
|
|
class FailStaleMeetRecordingsCommand extends Command
|
|
{
|
|
protected $signature = 'meet:fail-stale-recordings';
|
|
|
|
protected $description = 'Mark Meet recordings stuck in processing as failed';
|
|
|
|
public function handle(RecordingService $recordings): int
|
|
{
|
|
$failed = $recordings->failStaleProcessingRecordings();
|
|
|
|
$this->info("Marked {$failed} stale recording(s) as failed.");
|
|
|
|
return self::SUCCESS;
|
|
}
|
|
}
|