mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=2114
This commit is contained in:
parent
ddcc744a2b
commit
d4bf03fde6
|
@ -64,6 +64,7 @@ create table user (
|
|||
url varchar(254),
|
||||
send_email smallint not null,
|
||||
show_hosts smallint not null,
|
||||
posts integer unsigned not null,
|
||||
primary key (id)
|
||||
);
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ class WorkAbort(WorkUC):
|
|||
class ResultAbort(ResultUCError):
|
||||
def __init__(self):
|
||||
ResultUCError.__init__(self)
|
||||
self.stderr_out.append('<message>Output file exceeded size limit</message>')
|
||||
self.stderr_out.append('<message>Output file exceeded size limit')
|
||||
|
||||
class ProjectAbort(ProjectUC):
|
||||
def __init__(self):
|
||||
|
|
|
@ -12,6 +12,7 @@ class WorkConcat(Work):
|
|||
self.wu_template = "concat_wu"
|
||||
self.result_template = "concat_result"
|
||||
self.input_files = ['input']*2
|
||||
self.delay_bound = 86400*3
|
||||
|
||||
class ProjectConcat(TestProject):
|
||||
def __init__(self, works=None, users=None, hosts=None, redundancy=2):
|
||||
|
|
|
@ -14,7 +14,7 @@ class WorkExit(WorkUC):
|
|||
class ResultExit(ResultUCError):
|
||||
def __init__(self):
|
||||
ResultUCError.__init__(self)
|
||||
self.stderr_out.append('<message>process exited with a nonzero exit code')
|
||||
self.stderr_out.append('<message>process exited with a non-zero exit code')
|
||||
|
||||
class ProjectExit(ProjectUC):
|
||||
def __init__(self):
|
||||
|
|
|
@ -15,7 +15,7 @@ class ResultSignal(ResultUCError):
|
|||
def __init__(self):
|
||||
ResultUCError.__init__(self)
|
||||
self.stderr_out.append('SIGHUP: terminal line hangup')
|
||||
self.stderr_out.append('<message>process exited with a nonzero exit code')
|
||||
self.stderr_out.append('<message>process exited with a non-zero exit code')
|
||||
|
||||
class ProjectSignal(ProjectUC):
|
||||
def __init__(self):
|
||||
|
|
|
@ -355,7 +355,7 @@ class Host:
|
|||
self.global_prefs = None
|
||||
self.log_flags = 'log_flags.xml'
|
||||
self.host_dir = os.path.join(options.hosts_dir, self.name)
|
||||
self.defargs = "-exit_when_idle -skip_cpu_benchmarks -debug_fake_exponential_backoff"
|
||||
self.defargs = "-exit_when_idle -skip_cpu_benchmarks -debug_fake_exponential_backoff -return_results_immediately"
|
||||
# self.defargs = "-exit_when_idle -skip_cpu_benchmarks -sched_retry_delay_min 1"
|
||||
|
||||
def add_user(self, user, project):
|
||||
|
|
Loading…
Reference in New Issue