aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorImran Rashid <imran@quantifind.com>2013-01-16 12:21:37 -0800
committerImran Rashid <imran@quantifind.com>2013-01-16 12:21:37 -0800
commiteae698f755f41fd8bdff94c498df314ed74aa3c1 (patch)
treed475de78d911c6aab29e780f9971f80253dc2332 /core
parentcb867e9ffb2c5e3d65d50c222fcce3631b94e4dd (diff)
downloadspark-eae698f755f41fd8bdff94c498df314ed74aa3c1.tar.gz
spark-eae698f755f41fd8bdff94c498df314ed74aa3c1.tar.bz2
spark-eae698f755f41fd8bdff94c498df314ed74aa3c1.zip
remove unused thread pool
Diffstat (limited to 'core')
-rw-r--r--core/src/main/scala/spark/executor/StandaloneExecutorBackend.scala3
1 files changed, 0 insertions, 3 deletions
diff --git a/core/src/main/scala/spark/executor/StandaloneExecutorBackend.scala b/core/src/main/scala/spark/executor/StandaloneExecutorBackend.scala
index 915f71ba9f..a29bf974d2 100644
--- a/core/src/main/scala/spark/executor/StandaloneExecutorBackend.scala
+++ b/core/src/main/scala/spark/executor/StandaloneExecutorBackend.scala
@@ -24,9 +24,6 @@ private[spark] class StandaloneExecutorBackend(
with ExecutorBackend
with Logging {
- val threadPool = new ThreadPoolExecutor(
- 1, 128, 600, TimeUnit.SECONDS, new SynchronousQueue[Runnable])
-
var master: ActorRef = null
override def preStart() {