pkuwm opened a new issue #1014:
URL: https://github.com/apache/helix/issues/1014
`CustomRestClientFactory.get()` uses double checked locking to init the
singleton instance. To make it safe for double checked locking, the instance
should be declared as `volatile` as below:
```
private static volatile CustomRestClient INSTANCE = null;
```
----------------------------------------------------------------
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]