Skip to content
Snippets Groups Projects
Commit 28f27097 authored by Reynold Xin's avatar Reynold Xin
Browse files

Don't reset job group when a new job description is set.

parent 31929994
No related branches found
No related tags found
No related merge requests found
...@@ -307,7 +307,7 @@ class SparkContext( ...@@ -307,7 +307,7 @@ class SparkContext(
/** Set a human readable description of the current job. */ /** Set a human readable description of the current job. */
@deprecated("use setJobGroup", "0.8.1") @deprecated("use setJobGroup", "0.8.1")
def setJobDescription(value: String) { def setJobDescription(value: String) {
setJobGroup("", value) setLocalProperty(SparkContext.SPARK_JOB_DESCRIPTION, value)
} }
/** /**
......
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