Skip to content

Commit

Permalink
Avoids "filter" option in tarfile (#419)
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonWeill authored Aug 15, 2023
1 parent 2ed7d56 commit 26fdfbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_scheduler/job_files_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def download_tar(self, archive_format: str = "tar"):

with fsspec.open(archive_filepath) as f:
with tarfile.open(fileobj=f, mode=read_mode) as tar:
tar.extractall(self.output_dir, filter="data")
tar.extractall(self.output_dir)

def download(self):
# ensure presence of staging paths
Expand Down

0 comments on commit 26fdfbb

Please sign in to comment.