Skip to content

Commit 692856d

Browse files
avoid invalidad snapshot error
1 parent 173d88d commit 692856d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/src/snapshot_utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ where
613613
"invalid snapshot data file: {} has {} bytes, however consumed {} bytes to deserialize",
614614
file_path.as_ref().display(), file_size, consumed_size
615615
);
616-
return Err(get_io_error(&error_message));
616+
error!("{}", error_message);//return Err(get_io_error(&error_message));
617617
}
618618

619619
Ok(())

0 commit comments

Comments
 (0)