chore(write): fix stable error

This commit is contained in:
j-mendez 2024-06-25 11:27:57 -04:00
parent 5f48af7325
commit 73597cc0cb
1 changed files with 1 additions and 1 deletions

View File

@ -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(),
)), )),
} }