You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.4 KiB
28 lines
1.4 KiB
From 8cb38e1557b81740f49dff43a297aef7bd676424 Mon Sep 17 00:00:00 2001
|
|
From: Lennart Poettering <lennart@poettering.net>
|
|
Date: Tue, 9 Oct 2018 22:22:52 +0200
|
|
Subject: [PATCH] core: make destructive transaction error a bit more useful
|
|
|
|
(cherry picked from commit cf99f8eacf1c864b19a6a02edea78c43f3185cb7)
|
|
|
|
Related: #2040147
|
|
---
|
|
src/core/transaction.c | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/src/core/transaction.c b/src/core/transaction.c
|
|
index cdaaff4f55..ee5b39fef4 100644
|
|
--- a/src/core/transaction.c
|
|
+++ b/src/core/transaction.c
|
|
@@ -526,7 +526,9 @@ static int transaction_is_destructive(Transaction *tr, JobMode mode, sd_bus_erro
|
|
if (j->unit->job && (mode == JOB_FAIL || j->unit->job->irreversible) &&
|
|
job_type_is_conflicting(j->unit->job->type, j->type))
|
|
return sd_bus_error_setf(e, BUS_ERROR_TRANSACTION_IS_DESTRUCTIVE,
|
|
- "Transaction is destructive.");
|
|
+ "Transaction for %s/%s is destructive (%s has '%s' job queued, but '%s' is included in transaction).",
|
|
+ tr->anchor_job->unit->id, job_type_to_string(tr->anchor_job->type),
|
|
+ j->unit->id, job_type_to_string(j->unit->job->type), job_type_to_string(j->type));
|
|
}
|
|
|
|
return 0;
|