This commit is contained in:
asonix 2023-07-14 23:16:57 -05:00
parent 27c4fdf2c8
commit 9871ad2ee0
1 changed files with 3 additions and 3 deletions

View File

@ -1688,7 +1688,7 @@ where
"Error generating details for motion file for hash {}", "Error generating details for motion file for hash {}",
hex::encode(&hash) hex::encode(&hash)
); );
return Err(e.into()); return Err(e);
} }
Err(MigrateError::From(e)) => { Err(MigrateError::From(e)) => {
tracing::warn!("Error migrating motion file from old store"); tracing::warn!("Error migrating motion file from old store");
@ -1739,7 +1739,7 @@ where
"Error generating details for variant file for hash {}", "Error generating details for variant file for hash {}",
hex::encode(&hash) hex::encode(&hash)
); );
return Err(e.into()); return Err(e);
} }
Err(MigrateError::From(e)) => { Err(MigrateError::From(e)) => {
tracing::warn!("Error migrating variant file from old store"); tracing::warn!("Error migrating variant file from old store");
@ -1766,7 +1766,7 @@ where
"Error generating details for original file for hash {}", "Error generating details for original file for hash {}",
hex::encode(&hash) hex::encode(&hash)
); );
return Err(e.into()); return Err(e);
} }
Err(MigrateError::From(e)) => { Err(MigrateError::From(e)) => {
tracing::warn!("Error migrating original file from old store"); tracing::warn!("Error migrating original file from old store");