increase max file uploading number (#1794)
This commit is contained in:
@@ -19,6 +19,7 @@ NAVIGATION_MAX_RETRY_TIME = 5
|
||||
AUTO_COMPLETION_POTENTIAL_VALUES_COUNT = 5
|
||||
DROPDOWN_MENU_MAX_DISTANCE = 100
|
||||
BROWSER_DOWNLOADING_SUFFIX = ".crdownload"
|
||||
MAX_UPLOAD_FILE_COUNT = 50
|
||||
|
||||
# reserved fields for navigation payload
|
||||
SPECIAL_FIELD_VERIFICATION_CODE = "verification_code"
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user