Update (fix): infinite loop

This commit is contained in:
2023-11-29 12:46:37 +08:00
parent 8c0ae63f42
commit 6580463fcb
4 changed files with 44 additions and 3 deletions

View File

@@ -32,6 +32,7 @@ class UrlToCrawl extends Model
'is_crawling' => 'bool',
'is_crawled' => 'bool',
'metadata' => 'object',
'crawl_counts' => 'integer',
];
protected $fillable = [
@@ -43,5 +44,6 @@ class UrlToCrawl extends Model
'output',
'metadata',
'status',
'crawl_counts',
];
}