From a3f208804630504769489c5f9586465dddfa0357 Mon Sep 17 00:00:00 2001 From: Alexander Krotov Date: Mon, 20 Jan 2020 02:12:43 +0300 Subject: [PATCH] Fix the message printed on job success "Cannot be retried" does not make it clear if the job succeeded or failed. --- src/job.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/job.rs b/src/job.rs index 41bcd5ee4..41fb577cf 100644 --- a/src/job.rs +++ b/src/job.rs @@ -1035,10 +1035,7 @@ fn job_perform(context: &Context, thread: Thread, probe_network: bool) { "{} removes job {} as it failed with error {:?}", thread, job, err ); } else { - info!( - context, - "{} removes job {} as it cannot be retried", thread, job - ); + info!(context, "{} removes job {} as it succeeded", thread, job); } job.delete(context);