dongjoon-hyun commented on a change in pull request #25787: [SPARK-29081][CORE]
Replace calls to SerializationUtils.clone on properties with a faster
implementation
URL: https://github.com/apache/spark/pull/25787#discussion_r324415225
##########
File path: core/src/main/scala/org/apache/spark/SparkContext.scala
##########
@@ -346,7 +346,7 @@ class SparkContext(config: SparkConf) extends Logging {
override protected def childValue(parent: Properties): Properties = {
// Note: make a clone such that changes in the parent properties aren't
reflected in
// the those of the children threads, which has confusing semantics
(SPARK-10563).
- SerializationUtils.clone(parent)
Review comment:
Please remove the unused import together in this PR.
```
import org.apache.commons.lang3.SerializationUtils
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]