Skip to content
Snippets Groups Projects
Commit 145fdf2d authored by Jérémy Commins's avatar Jérémy Commins
Browse files

Remove AWS support from automatization module

parent db6e6966
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ class Automatization:
def __init__(self) -> None:
self._df = None
self._tiles_to_update = dict()
self._products_list = {"hubs": {}, "aws": {}}
self._products_list = {}
if not self._csv_path.exists():
logger.info("Creating tiles_to_watch file")
......@@ -190,8 +190,7 @@ class Automatization:
)
request.from_tiles([tile])
self._products_list["hubs"].update(request.products_list["hubs"])
self._products_list["aws"].update(request.products_list["aws"])
self._products_list.update(request.products_list)
@staticmethod
def _get_ignored_tiles(self) -> np.ndarray:
......@@ -235,7 +234,6 @@ class Automatization:
prods = DownloadAndProcess(
identifiers=self._products_list,
hubs_limit=hubs_limit,
aws_limit=2,
process_products=process_products,
max_processes=3,
indices_list=indices_list,
......@@ -273,7 +271,7 @@ class Automatization:
@property
def products(self) -> Dict[str, dict]:
"""Returns the products to download on AWS and on hubs."""
"""Returns the products to download."""
return self._products_list
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment