def: lower default timeout to 90s

Almost everybody found 3min too long, so lower it again
This commit is contained in:
Lennart Poettering 2011-04-27 22:29:29 +02:00
parent 0ecb942753
commit ecb963cc40
7 changed files with 13 additions and 7 deletions

8
TODO
View File

@ -30,6 +30,10 @@ F15 External:
Features:
* introduce dbus calls for enabling/disabling a service
* support notifications for services being enabled/disabled
* Maybe merge nss-myhostname into systemd?
* ensure we strip empty directories from search path
@ -38,7 +42,9 @@ Features:
* GC unreferenced jobs (such as .device jobs)
* support wildcard expansion in ListeStream= and friends
* support wildcard expansion in ListenStream= and friends
* support wildcard expansion in EnvironmentFile= and friends
* avoid DefaultStandardOutput=syslog to have any effect on StandardInput=socket services

View File

@ -129,7 +129,7 @@
<listitem><para>Specify the query
timeout in seconds. Defaults to
3min.</para></listitem>
90s.</para></listitem>
</varlistentry>
<varlistentry>

View File

@ -212,7 +212,7 @@
a time span value such as "5min
20s". Pass 0 to disable the timeout
logic. Defaults to
3min.</para></listitem>
90s.</para></listitem>
</varlistentry>
<varlistentry>

View File

@ -448,7 +448,7 @@
time span value such as "5min
20s". Pass 0 to disable the timeout
logic. Defaults to
3min.</para></listitem>
90s.</para></listitem>
</varlistentry>
<varlistentry>

View File

@ -541,7 +541,7 @@
a time span value such as "5min
20s". Pass 0 to disable the timeout
logic. Defaults to
3min.</para></listitem>
90s.</para></listitem>
</varlistentry>
<varlistentry>

View File

@ -166,7 +166,7 @@
a time span value such as "5min
20s". Pass 0 to disable the timeout
logic. Defaults to
3min.</para></listitem>
90s.</para></listitem>
</varlistentry>
<varlistentry>

View File

@ -24,7 +24,7 @@
#include "util.h"
#define DEFAULT_TIMEOUT_USEC (3*USEC_PER_MINUTE)
#define DEFAULT_TIMEOUT_USEC (90*USEC_PER_SEC)
#define DEFAULT_RESTART_USEC (100*USEC_PER_MSEC)
#define DEFAULT_EXIT_USEC (5*USEC_PER_MINUTE)