mirror of https://github.com/zkat/cacache-rs.git
chore(write): fix stable error
This commit is contained in:
parent
5f48af7325
commit
73597cc0cb
|
|
@ -187,7 +187,7 @@ impl AsyncWriter {
|
||||||
})))))
|
})))))
|
||||||
}
|
}
|
||||||
_ => Err(Error::IoError(
|
_ => Err(Error::IoError(
|
||||||
std::io::Error::other("File not created"),
|
std::io::Error::new(std::io::ErrorKind::Other, "temp file create error"),
|
||||||
"Possible memory issues for file handle".into(),
|
"Possible memory issues for file handle".into(),
|
||||||
)),
|
)),
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue