File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 6
6
7
7
class ModelData (object ):
8
8
def __init__ (self , client , model_manifest_path ):
9
- self .manifest_lock_path = model_manifest_path
10
- self .manifest_data = get_manifest (self .manifest_lock_path )
9
+ self .manifest_freeze_path = model_manifest_path
10
+ self .manifest_data = get_manifest (self .manifest_freeze_path )
11
11
self .client = client
12
12
self .models = {}
13
13
self .user_data = {}
@@ -74,8 +74,8 @@ def get_manifest(manifest_path):
74
74
del manifest_data ['lock_checksum' ]
75
75
detected_lock_checksum = md5_for_str (str (manifest_data ))
76
76
if expected_lock_checksum != detected_lock_checksum :
77
- raise Exception ("Manifest Lockfile Tamper Detected; please use the CLI and 'algo compile ' to rebuild your "
78
- "algorithm's lock file." )
77
+ raise Exception ("Manifest FreezeFile Tamper Detected; please use the CLI and 'algo freeze ' to rebuild your "
78
+ "algorithm's freeze file." )
79
79
return manifest_data
80
80
else :
81
81
return None
You can’t perform that action at this time.
0 commit comments