Files
ladill-meet/app/Console/Commands/FailStaleMeetRecordingsCommand.php
isaaccladandCursor 4af53f9374
Deploy Ladill Meet / deploy (push) Successful in 52s
Fix stuck recording processing and add invoice service API test.
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>
2026-07-03 22:54:26 +00:00

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;
}
}