chiark / gitweb /
service: if we don't know the main pid of a service, we cannot accept any notificatio...
[elogind.git] / src / core / job.c
index 93fa44a506a050ceae598d315c76130cddf46dde..feeb563177e39351d1e05f512cde70403151797c 100644 (file)
@@ -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;
 }