X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fcore%2Fjob.c;h=feeb563177e39351d1e05f512cde70403151797c;hb=e3025da104f96ab428a9121f738c6343964d5260;hp=93fa44a506a050ceae598d315c76130cddf46dde;hpb=cb8ccb2271727fc114ca43104d3333ee4635cc79;p=elogind.git diff --git a/src/core/job.c b/src/core/job.c index 93fa44a50..feeb56317 100644 --- a/src/core/job.c +++ b/src/core/job.c @@ -1051,7 +1051,7 @@ int job_coldplug(Job *j) { assert(j); - if (j->begin_usec <= 0) + if (j->begin_usec == 0 || j->unit->job_timeout == 0) return 0; if (j->timer_event_source) @@ -1118,9 +1118,6 @@ int job_get_timeout(Job *j, uint64_t *timeout) { *timeout = MIN(x, y); - log_info("job_get_timeout %s %d/%"PRIu64" %d/%"PRIu64" -> 1/%"PRIu64, - j->unit->id, r, x, q, y, *timeout); - return 1; }