Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
haoyuan committed Mar 22, 2014
1 parent bf278fa commit 1dcadf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pyspark/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ def _getJavaStorageLevel(self, storageLevel):
raise Exception("storageLevel must be of type pyspark.StorageLevel")

newStorageLevel = self._jvm.org.apache.spark.storage.StorageLevel
return newStorageLevel(storageLevel.useDisk, storageLevel.useMemory, storageLevel.userTachyon,
return newStorageLevel(storageLevel.useDisk, storageLevel.useMemory, storageLevel.useTachyon,
storageLevel.deserialized, storageLevel.replication)

def setJobGroup(self, groupId, description):
Expand Down

0 comments on commit 1dcadf9

Please sign in to comment.