Description
The org.apache.hc.client5.http.fluent.Executor class checks volatile fields for null before loading them a second time for execution. If the field is updated to null at runtime, this can result in a NPE.
Even when this doesn't result in failures, it's better for performance if we can use a single volatile load rather than two.