File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 3434async def _check_s3_cache (
3535 query : IngestionQuery ,
3636 input_text : str ,
37- slider_position : int ,
37+ max_file_size : int ,
3838 pattern_type : str ,
3939 pattern : str ,
4040 token : str | None ,
@@ -47,8 +47,8 @@ async def _check_s3_cache(
4747 The parsed query object.
4848 input_text : str
4949 Original input text.
50- slider_position : int
51- Slider position for file size.
50+ max_file_size : int
51+ Maximum file size in KB .
5252 pattern_type : str
5353 Pattern type (include/exclude).
5454 pattern : str
@@ -116,7 +116,7 @@ async def _check_s3_cache(
116116 digest_url = s3_url ,
117117 tree = tree ,
118118 content = content ,
119- default_max_file_size = slider_position ,
119+ default_max_file_size = max_file_size ,
120120 pattern_type = pattern_type ,
121121 pattern = pattern ,
122122 )
@@ -273,7 +273,7 @@ async def process_query(
273273 s3_response = await _check_s3_cache (
274274 query = query ,
275275 input_text = input_text ,
276- slider_position = slider_position ,
276+ max_file_size = max_file_size ,
277277 pattern_type = pattern_type .value ,
278278 pattern = pattern ,
279279 token = token ,
You can’t perform that action at this time.
0 commit comments