Update index.py

This commit is contained in:
Mr Chen 2023-11-29 00:35:51 +08:00
parent 6dbdf26d80
commit d49ebe9fa8
1 changed files with 2 additions and 2 deletions

View File

@ -330,8 +330,8 @@ def addJob():
w_body += "startretries=3" + "\n"
w_body += "stdout_logfile=" + log_dir + program + ".out.log" + "\n"
w_body += "stderr_logfile=" + log_dir + program + ".err.log" + "\n"
w_body += "stdout_logfile_maxbytes=2MB" + "\n"
w_body += "stderr_logfile_maxbytes=2MB" + "\n"
w_body += "stdout_logfile_maxbytes=1MB" + "\n"
w_body += "stderr_logfile_maxbytes=1MB" + "\n"
w_body += "user=" + user + "\n"
w_body += "priority=999" + "\n"
w_body += "numprocs={0}".format(numprocs) + "\n"