fix: do not return error on docker prune

There are still some issues, I'm removing errors on it to see if it acts better
This commit is contained in:
Pierre Mavro
2021-05-12 17:19:38 +02:00
parent 266e4a8ab4
commit 2a97670066

View File

@@ -540,7 +540,7 @@ fn docker_prune_images(envs: Vec<(&str, &str)>) -> Result<(), SimpleError> {
Duration::minutes(BUILD_DURATION_TIMEOUT_MIN),
) {
Ok(_) => {}
Err(e) => return Err(e),
Err(e) => error!("error while puring {}. {}", prune, e.message),
};
}