fix: 自动清理过期的chunk

This commit is contained in:
Lan
2025-12-01 15:24:47 +08:00
parent 3ff4e9b6cf
commit a649f54c5b
3 changed files with 12 additions and 14 deletions
-1
View File
@@ -51,7 +51,6 @@ class UploadChunk(models.Model):
file_name = fields.CharField(max_length=255)
created_at = fields.DatetimeField(auto_now_add=True)
completed = fields.BooleanField(default=False)
actual_size = fields.IntField(null=True) # 实际接收的分片大小
class KeyValue(Model):