Github user zsxwing commented on the pull request:
https://github.com/apache/spark/pull/887#issuecomment-44239047
> cachedPeers is the result of a future, so it's probably not possible that
it's partially constructed.
One thread runs the following code:
```
*r = ...
set cachedPeers to r
```
And another thread runs the following code:
```
if (read cachedPeers != null) {
assertTrue(read *cachedPeers == read *r) // JVM allows this assertion
fails if reading and writing do not have the happen-before relation
}
```
I added volatile to force a happen-before relation between writing
`cachedPeers` and reading `cachedPeers`.
---
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.
---