debugparse2
All checks were successful
deploy / deploy (push) Successful in 55s

This commit is contained in:
Untone 2024-10-23 16:26:57 +03:00
parent 6206a68697
commit f671b76611

View File

@ -137,9 +137,9 @@ pub async fn proxy_handler(
};
}
Ok(None) => {
warn!("cannot find stored path for: {}", requested_res);
warn!("cannot find stored path for: {}", filekey);
// download from aws to storj
match load_file_from_s3(&state.aws_client, &state.bucket, &requested_res).await {
match load_file_from_s3(&state.aws_client, &state.bucket, &filekey).await {
Ok(filedata) => {
thumbdata_save(filedata.clone(), &state, &filekey, content_type.to_string())
.await;
@ -158,7 +158,7 @@ pub async fn proxy_handler(
Ok(HttpResponse::Ok().content_type(content_type).body(filedata))
},
Err(e) => {
error!("cannot download {} from aws: {}", requested_res, e);
error!("cannot download {} from aws: {}", filekey, e);
Err(ErrorInternalServerError(e))
},
}