fixed bug, s3 ignored first chunk of files
This commit is contained in:
parent
a85c254c9f
commit
d745a161bc
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ class S3Source(Source):
|
|||
config["tmp_dir"] if "tmp_dir" in config else "/tmp/syng"
|
||||
)
|
||||
|
||||
self.index: list[str] = []
|
||||
self.index: list[str] = config["index"] if "index" in config else []
|
||||
self.index_file: Optional[str] = (
|
||||
config["index_file"] if "index_file" in config else None
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue