BLOCKER: oss jetty server fails to launch

temporarily disabling spring injection of GslbServiceProvider as only
implementing class is in non-oss, so oss build fails to launch with no
bean fpund exception
This commit is contained in:
Murali Reddy 2013-03-28 08:49:35 +05:30
parent 66b47ef6f8
commit e8a144a21d

View File

@ -28,7 +28,6 @@ import com.cloud.exception.InvalidParameterValueException;
import com.cloud.exception.ResourceUnavailableException;
import com.cloud.network.Network;
import com.cloud.network.dao.*;
import com.cloud.network.element.NetworkElement;
import com.cloud.network.rules.LoadBalancer;
import com.cloud.network.rules.RulesManager;
import com.cloud.region.ha.GlobalLoadBalancerRule;
@ -80,10 +79,9 @@ public class GlobalLoadBalancingRulesServiceImpl implements GlobalLoadBalancingR
IPAddressDao _ipAddressDao;
@Inject
AgentManager _agentMgr;
@Inject
protected GslbServiceProvider _gslbProvider;
@Inject
protected List<NetworkElement> _networkElements;
protected GslbServiceProvider _gslbProvider = null;
@Override
@DB