Skip to content

Commit cfc46c7

Browse files
remove fix for repack model
1 parent 298423a commit cfc46c7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/sagemaker/workflow/_utils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,8 +262,7 @@ def _inject_repack_script_and_launcher(self):
262262
download_file_from_url(self._source_dir, old_targz_path, self.sagemaker_session)
263263

264264
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")
265+
t.extractall(path=targz_contents_dir)
267266

268267
shutil.copy2(fname, os.path.join(targz_contents_dir, REPACK_SCRIPT))
269268
with open(

0 commit comments

Comments
 (0)