Revert "add a custom response for full storage"

This reverts commit eddbeec7ef.
This commit is contained in:
neri 2022-05-09 23:07:24 +02:00
parent c6a9eae828
commit 7e2d1d8c71
1 changed files with 4 additions and 14 deletions

View File

@ -173,20 +173,10 @@ async fn write_to_file(
)));
}
}
file.write_all(&chunk)
.await
.map_err(|write_err| match write_err.kind() {
std::io::ErrorKind::StorageFull => {
log::warn!("storage is full {:?}", write_err);
error::ErrorServiceUnavailable(
"storage is full, you will need to wait for some files to expire",
)
}
_ => {
log::error!("could not write file {:?}", write_err);
error::ErrorInternalServerError("could not write file")
}
})?;
file.write_all(&chunk).await.map_err(|write_err| {
log::error!("could not write file {:?}", write_err);
error::ErrorInternalServerError("could not write file")
})?;
}
Ok(written_bytes)
}