From d745a161bcbabafc44299eaa8ee44d553c54cd48 Mon Sep 17 00:00:00 2001 From: Christoph Stahl Date: Tue, 6 Dec 2022 15:19:52 +0100 Subject: [PATCH] fixed bug, s3 ignored first chunk of files --- syng/sources/s3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syng/sources/s3.py b/syng/sources/s3.py index 4f49c40..45e6597 100644 --- a/syng/sources/s3.py +++ b/syng/sources/s3.py @@ -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 )