summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-05-20 01:14:43 +0200
committerLennart Poettering <lennart@poettering.net>2010-05-20 01:14:43 +0200
commitd5159713c13859a7d472625ddaa9f9cc4c546236 (patch)
treeee068cc0f304bf2fe3bcb54145edf7d31a61d467
parent9eb63b3cb4a41707b6c01d81cef15acf1a757613 (diff)
service: when we cannot start due to rate limít consider that a real failure
-rw-r--r--src/service.c2
-rw-r--r--src/unit.c7
2 files changed, 5 insertions, 4 deletions
diff --git a/src/service.c b/src/service.c
index 3e2a499ec8..ac83862db7 100644
--- a/src/service.c
+++ b/src/service.c
@@ -1708,7 +1708,7 @@ static int service_start(Unit *u) {
/* Make sure we don't enter a busy loop of some kind. */
if (!ratelimit_test(&s->ratelimit)) {
log_warning("%s start request repeated too quickly, refusing to start.", u->meta.id);
- return -EAGAIN;
+ return -ECANCELED;
}
s->failure = false;
diff --git a/src/unit.c b/src/unit.c
index 8f0b0773f1..bcb95b2adc 100644
--- a/src/unit.c
+++ b/src/unit.c
@@ -735,9 +735,10 @@ fail:
}
/* Errors:
- * -EBADR: This unit type does not support starting.
- * -EALREADY: Unit is already started.
- * -EAGAIN: An operation is already in progress. Retry later.
+ * -EBADR: This unit type does not support starting.
+ * -EALREADY: Unit is already started.
+ * -EAGAIN: An operation is already in progress. Retry later.
+ * -ECANCELED: Too many requests for now.
*/
int unit_start(Unit *u) {
UnitActiveState state;