From d5159713c13859a7d472625ddaa9f9cc4c546236 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 20 May 2010 01:14:43 +0200 Subject: service: when we cannot start due to rate limít consider that a real failure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/service.c | 2 +- src/unit.c | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) (limited to 'src') 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; -- cgit v1.2.3-54-g00ecf