Details
-
Bug
-
Status: Closed
-
Critical
-
Resolution: Fixed
-
1.0.0
-
None
-
Gemfire 6.5.1.2, Spring Gemfire 1.0.0
Description
When using a WiringInstantiator, the instantiator needs to be set up on each machine by the Spring application context. Unfortunately, the corrent code causes the created instantiators to be distributed, so the first server works, but second one fails.
In WiringInstantiator:
public void afterPropertiesSet() {
if (configurer == null)
if (autoRegister)
{ here --> Instantiator.register(this); }}
Should be:
if (autoRegister)
{ here --> Instantiator.register(this,false); }False will not distribute this to the other nodes.
Attachments
Issue Links
- is duplicated by
-
SGF-46 In the InstantiatorFactoryBean provide a way to disable registration distribution
-
- Closed
-