Skip to content
Snippets Groups Projects
Commit f5a40a58 authored by Janet Goldstein's avatar Janet Goldstein
Browse files

fixing rebase conflict for 27th time

parent 62fa68e3
No related branches found
No related tags found
1 merge request!173remove system exits from datafetcher tests
This commit is part of merge request !173. Comments created here will be created in the context of that merge request.
......@@ -134,26 +134,17 @@ class ParallelFetcher(BaseFetcher):
def fetch_bucket(self, bucket):
""" Grab the files in this bucket """
file_sizes = [file["size"] for file in bucket["files"]]
<<<<<<< HEAD
pprint(f"retrieving files {file_sizes} from {bucket['server']}")
=======
pprint(f"retrieving files {file_sizes}")
>>>>>>> 9578688... Testing datafetcher fixes
self._LOG.debug(
f"{bucket['retrieve_method']} "
f"{len(bucket['files'])} files from "
f"{bucket['server']}...."
)
<<<<<<< HEAD
num_files = self.retrieve_files(
bucket["server"], bucket["retrieve_method"], bucket["files"]
)
print(f"done retrieving files {file_sizes} from {bucket['server']}")
return num_files
=======
self.retrieve_files(bucket["server"], bucket["retrieve_method"], bucket["files"])
print(f"done retrieving files {file_sizes}")
>>>>>>> 9578688... Testing datafetcher fixes
def run(self):
""" Fetch all the files for the product locator """
......
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