increase max file uploading number (#1794)

This commit is contained in:
LawyZheng 2025-02-20 13:36:50 +08:00 committed by GitHub
parent 66282054fe
commit ef5cb8d671
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View file

@ -25,6 +25,7 @@ from pypdf import PdfReader
from pypdf.errors import PdfReadError
from skyvern.config import settings
from skyvern.constants import MAX_UPLOAD_FILE_COUNT
from skyvern.exceptions import (
ContextParameterValueNotFound,
DisabledBlockExecutionError,
@ -1429,7 +1430,7 @@ class UploadToS3Block(Block):
if os.path.isdir(self.path):
# get all files in the directory, if there are more than 25 files, we will not upload them
files = os.listdir(self.path)
if len(files) > 25:
if len(files) > MAX_UPLOAD_FILE_COUNT:
raise ValueError("Too many files in the directory, not uploading")
for file in files:
# if the file is a directory, we will not upload it