Skip to content
Snippets Groups Projects
Commit fdc52b2f authored by Kay Ousterhout's avatar Kay Ousterhout
Browse files

Added back fully qualified class name

parent 7b5ae23a
No related branches found
No related tags found
No related merge requests found
...@@ -128,7 +128,7 @@ private[spark] class CoarseMesosSchedulerBackend( ...@@ -128,7 +128,7 @@ private[spark] class CoarseMesosSchedulerBackend(
if (uri == null) { if (uri == null) {
val runScript = new File(sparkHome, "spark-class").getCanonicalPath val runScript = new File(sparkHome, "spark-class").getCanonicalPath
command.setValue( command.setValue(
"\"%s\" CoarseGrainedExecutorBackend %s %s %s %d".format( "\"%s\" org.apache.spark.executor.CoarseGrainedExecutorBackend %s %s %s %d".format(
runScript, driverUrl, offer.getSlaveId.getValue, offer.getHostname, numCores)) runScript, driverUrl, offer.getSlaveId.getValue, offer.getHostname, numCores))
} else { } else {
// Grab everything to the first '.'. We'll use that and '*' to // Grab everything to the first '.'. We'll use that and '*' to
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment