Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
upstream merge
  • Loading branch information
buck heroux committed Oct 21, 2015
commit 49a4ed0931b20dd2982c16e1ca3533cef65303af
4 changes: 2 additions & 2 deletions python/pyspark/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import tarfile
import tempfile
import uuid
from threading import Lock
from threading import RLock
from tempfile import NamedTemporaryFile

from pyspark import accumulators
Expand Down Expand Up @@ -114,7 +114,7 @@ def __init__(self, master=None, appName=None, sparkHome=None, pyFiles=None,
SparkContext._ensure_initialized(self, gateway=gateway)
try:
self._do_init(master, appName, sparkHome, pyFiles, environment,
batchSize, serializer, conf, jsc, profiler_cls, requirementsFile)
batchSize, serializer, conf, jsc, profiler_cls)
except:
# If an error occurs, clean up in order to allow future SparkContext creation:
self.stop()
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.