Github user JoshRosen commented on a diff in the pull request:
https://github.com/apache/spark/pull/10958#discussion_r52227516
--- Diff: core/src/main/scala/org/apache/spark/Accumulator.scala ---
@@ -60,19 +60,20 @@ import org.apache.spark.storage.{BlockId, BlockStatus}
* @tparam T result type
*/
class Accumulator[T] private[spark] (
- @transient private[spark] val initialValue: T,
+ // SI-8813: This must explicitly be a private val, or else scala 2.11
doesn't compile
+ @transient private val initialValue: T,
--- End diff --
This change was already added in another patch, causing a merge conflict
here.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]