We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 298423a commit cfc46c7Copy full SHA for cfc46c7
src/sagemaker/workflow/_utils.py
@@ -262,8 +262,7 @@ def _inject_repack_script_and_launcher(self):
262
download_file_from_url(self._source_dir, old_targz_path, self.sagemaker_session)
263
264
with tarfile.open(name=old_targz_path, mode="r:gz") as t:
265
- check_tarfile_data_filter_attribute()
266
- t.extractall(path=targz_contents_dir, filter="data")
+ t.extractall(path=targz_contents_dir)
267
268
shutil.copy2(fname, os.path.join(targz_contents_dir, REPACK_SCRIPT))
269
with open(
0 commit comments