Fixed a typo
ci/woodpecker/push/ociImagePush Pipeline was successful Details

This commit is contained in:
Natty 2024-11-17 18:47:51 +01:00
parent ad253fb02b
commit ff6458ea2e
Signed by: natty
GPG Key ID: BF6CB659ADEE60EC
1 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,7 @@ impl From<reqwest::Error> for DeliveryErrorKind {
e if e.is_decode() => {
RetriableRemoteDeliveryError::ResponseParse(format!("{:?}", e)).into()
}
e if e.s_builder() => InvalidDeliveryTaskError::Reqwest(format!("{:?}", e)).into(),
e if e.is_builder() => InvalidDeliveryTaskError::Reqwest(format!("{:?}", e)).into(),
e => RetriableRemoteDeliveryError::GenericReqwest(format!("{:?}", e)).into(),
}
}