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 6fad03d commit e9dda44Copy full SHA for e9dda44
src/snapshot/src/lib.rs
@@ -219,9 +219,10 @@ impl Snapshot {
219
object
220
.serialize(&mut writer, &self.version_map, self.target_version)
221
.map_err(Error::Versionize)?;
222
- writer
223
- .flush()
224
- .map_err(|ref err| Error::Io(err.raw_os_error().unwrap_or(libc::EINVAL)))
+ // writer
+ // .flush()
+ // .map_err(|ref err| Error::Io(err.raw_os_error().unwrap_or(libc::EINVAL)))
225
+ Ok(())
226
}
227
228
// Returns the current snapshot format version.
0 commit comments