##// END OF EJS Templates
removed noop start methods on EngineSetLaunchers
James Booth -
Show More
@@ -1184,7 +1184,6 b' class PBSControllerLauncher(PBSLauncher, BatchClusterAppMixin):'
1184 1184 %s --log-to-file --profile-dir="{profile_dir}" --cluster-id="{cluster_id}"
1185 1185 """%(' '.join(map(pipes.quote, ipcontroller_cmd_argv))))
1186 1186
1187
1188 1187 def start(self):
1189 1188 """Start the controller by profile or profile_dir."""
1190 1189 return super(PBSControllerLauncher, self).start(1)
@@ -1200,10 +1199,6 b' class PBSEngineSetLauncher(PBSLauncher, BatchClusterAppMixin):'
1200 1199 %s --profile-dir="{profile_dir}" --cluster-id="{cluster_id}"
1201 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 1203 #SGE is very similar to PBS
1209 1204
@@ -1241,10 +1236,6 b' class SGEEngineSetLauncher(SGELauncher, BatchClusterAppMixin):'
1241 1236 %s --profile-dir="{profile_dir}" --cluster-id="{cluster_id}"
1242 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 1240 # LSF launchers
1250 1241
@@ -1310,10 +1301,6 b' class LSFEngineSetLauncher(LSFLauncher, BatchClusterAppMixin):'
1310 1301 %s --profile-dir="{profile_dir}" --cluster-id="{cluster_id}"
1311 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 1305 # Condor Requires that we launch the ipengine/ipcontroller scripts rather
1319 1306 # that the python instance but otherwise is very similar to PBS
@@ -1380,10 +1367,6 b' transfer_executable = False'
1380 1367 arguments = "--log-to-file '--profile-dir={profile_dir}' '--cluster-id={cluster_id}'"
1381 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 1372 # A launcher for ipcluster itself!
General Comments 0
You need to be logged in to leave comments. Login now