##// END OF EJS Templates
Fixing --log-level problem in WinHPC job setup.
Brian E. Granger -
Show More
@@ -252,7 +252,7 b' class IPControllerTask(WinHPCTask):'
252
252
253 task_name = Unicode('IPController', config=True)
253 task_name = Unicode('IPController', config=True)
254 controller_cmd = List(['ipcontroller.exe'], config=True)
254 controller_cmd = List(['ipcontroller.exe'], config=True)
255 controller_args = List(['--log-to-file', '--log-level', '40'], config=True)
255 controller_args = List(['--log-to-file', 'log-level=40'], config=True)
256 # I don't want these to be configurable
256 # I don't want these to be configurable
257 std_out_file_path = Unicode('', config=False)
257 std_out_file_path = Unicode('', config=False)
258 std_err_file_path = Unicode('', config=False)
258 std_err_file_path = Unicode('', config=False)
@@ -280,7 +280,7 b' class IPEngineTask(WinHPCTask):'
280
280
281 task_name = Unicode('IPEngine', config=True)
281 task_name = Unicode('IPEngine', config=True)
282 engine_cmd = List(['ipengine.exe'], config=True)
282 engine_cmd = List(['ipengine.exe'], config=True)
283 engine_args = List(['--log-to-file', '--log-level', '40'], config=True)
283 engine_args = List(['--log-to-file', 'log_level=40'], config=True)
284 # I don't want these to be configurable
284 # I don't want these to be configurable
285 std_out_file_path = Unicode('', config=False)
285 std_out_file_path = Unicode('', config=False)
286 std_err_file_path = Unicode('', config=False)
286 std_err_file_path = Unicode('', config=False)
General Comments 0
You need to be logged in to leave comments. Login now