removing dependency on an output folder, embrace python temp folder for bulk download

This commit is contained in:
Stefan Tobler
2024-02-17 00:29:05 -05:00
committed by psychedelicious
parent 0ab9fe6987
commit 037cac8154
5 changed files with 19 additions and 27 deletions

View File

@ -82,7 +82,7 @@ class ApiDependencies:
board_records = SqliteBoardRecordStorage(db=db)
boards = BoardService()
events = FastAPIEventService(event_handler_id)
bulk_download = BulkDownloadService(output_folder=f"{output_folder}")
bulk_download = BulkDownloadService()
image_records = SqliteImageRecordStorage(db=db)
images = ImageService()
invocation_cache = MemoryInvocationCache(max_cache_size=config.node_cache_size)