##// END OF EJS Templates
removed noop start methods on EngineSetLaunchers
James Booth -
Show More
@@ -1184,7 +1184,6 b' class PBSControllerLauncher(PBSLauncher, BatchClusterAppMixin):'
1184 %s --log-to-file --profile-dir="{profile_dir}" --cluster-id="{cluster_id}"
1184 %s --log-to-file --profile-dir="{profile_dir}" --cluster-id="{cluster_id}"
1185 """%(' '.join(map(pipes.quote, ipcontroller_cmd_argv))))
1185 """%(' '.join(map(pipes.quote, ipcontroller_cmd_argv))))
1186
1186
1187
1188 def start(self):
1187 def start(self):
1189 """Start the controller by profile or profile_dir."""
1188 """Start the controller by profile or profile_dir."""
1190 return super(PBSControllerLauncher, self).start(1)
1189 return super(PBSControllerLauncher, self).start(1)
@@ -1200,10 +1199,6 b' class PBSEngineSetLauncher(PBSLauncher, BatchClusterAppMixin):'
1200 %s --profile-dir="{profile_dir}" --cluster-id="{cluster_id}"
1199 %s --profile-dir="{profile_dir}" --cluster-id="{cluster_id}"
1201 """%(' '.join(map(pipes.quote,ipengine_cmd_argv))))
1200 """%(' '.join(map(pipes.quote,ipengine_cmd_argv))))
1202
1201
1203 def start(self, n):
1204 """Start n engines by profile or profile_dir."""
1205 return super(PBSEngineSetLauncher, self).start(n)
1206
1207
1202
1208 #SGE is very similar to PBS
1203 #SGE is very similar to PBS
1209
1204
@@ -1241,10 +1236,6 b' class SGEEngineSetLauncher(SGELauncher, BatchClusterAppMixin):'
1241 %s --profile-dir="{profile_dir}" --cluster-id="{cluster_id}"
1236 %s --profile-dir="{profile_dir}" --cluster-id="{cluster_id}"
1242 """%(' '.join(map(pipes.quote, ipengine_cmd_argv))))
1237 """%(' '.join(map(pipes.quote, ipengine_cmd_argv))))
1243
1238
1244 def start(self, n):
1245 """Start n engines by profile or profile_dir."""
1246 return super(SGEEngineSetLauncher, self).start(n)
1247
1248
1239
1249 # LSF launchers
1240 # LSF launchers
1250
1241
@@ -1310,10 +1301,6 b' class LSFEngineSetLauncher(LSFLauncher, BatchClusterAppMixin):'
1310 %s --profile-dir="{profile_dir}" --cluster-id="{cluster_id}"
1301 %s --profile-dir="{profile_dir}" --cluster-id="{cluster_id}"
1311 """%(' '.join(map(pipes.quote, ipengine_cmd_argv))))
1302 """%(' '.join(map(pipes.quote, ipengine_cmd_argv))))
1312
1303
1313 def start(self, n):
1314 """Start n engines by profile or profile_dir."""
1315 return super(LSFEngineSetLauncher, self).start(n)
1316
1317
1304
1318 # Condor Requires that we launch the ipengine/ipcontroller scripts rather
1305 # Condor Requires that we launch the ipengine/ipcontroller scripts rather
1319 # that the python instance but otherwise is very similar to PBS
1306 # that the python instance but otherwise is very similar to PBS
@@ -1380,10 +1367,6 b' transfer_executable = False'
1380 arguments = "--log-to-file '--profile-dir={profile_dir}' '--cluster-id={cluster_id}'"
1367 arguments = "--log-to-file '--profile-dir={profile_dir}' '--cluster-id={cluster_id}'"
1381 """ % condor_ipengine_cmd_argv)
1368 """ % condor_ipengine_cmd_argv)
1382
1369
1383 def start(self, n):
1384 """Start n engines by profile or profile_dir."""
1385 return super(CondorEngineSetLauncher, self).start(n)
1386
1387
1370
1388 #-----------------------------------------------------------------------------
1371 #-----------------------------------------------------------------------------
1389 # A launcher for ipcluster itself!
1372 # A launcher for ipcluster itself!
General Comments 0
You need to be logged in to leave comments. Login now