changed default delay again; seems to work better with some thousands of jobs

This commit is contained in:
Johannes Findeisen 2013-12-01 04:22:47 +01:00
commit 95bffed954

View file

@ -70,8 +70,8 @@ def parse_args():
parser.add_argument("-k", "--corethreads", default=200, type=int, parser.add_argument("-k", "--corethreads", default=200, type=int,
help="number of scheduler core threads (default: 200)") help="number of scheduler core threads (default: 200)")
parser.add_argument("-x", "--delay", default=0.153790, type=float, parser.add_argument("-x", "--delay", default=1.135791, type=float,
help="seconds delay between scheduled jobs (default: 0.153790)") help="seconds delay between scheduled jobs (default: 1.135791)")
output = parser.add_mutually_exclusive_group() output = parser.add_mutually_exclusive_group()
output.add_argument("-q", "--quiet", action="store_const", dest="loglevel", const=logging.ERROR, output.add_argument("-q", "--quiet", action="store_const", dest="loglevel", const=logging.ERROR,