mirror of https://github.com/apache/cloudstack.git
Missing char
This commit is contained in:
parent
97845169e2
commit
e1025a9095
|
|
@ -3557,7 +3557,7 @@ public class NetworkOrchestrator extends ManagerBase implements NetworkOrchestra
|
||||||
final List<Long> networkIds = _networksDao.findNetworksToGarbageCollect();
|
final List<Long> networkIds = _networksDao.findNetworksToGarbageCollect();
|
||||||
final int netGcWait = NumbersUtil.parseInt(_configDao.getValue(NetworkGcWait.key()), 60);
|
final int netGcWait = NumbersUtil.parseInt(_configDao.getValue(NetworkGcWait.key()), 60);
|
||||||
final int netGcInterval = NumbersUtil.parseInt(_configDao.getValue(NetworkGcInterval.key()), 60);
|
final int netGcInterval = NumbersUtil.parseInt(_configDao.getValue(NetworkGcInterval.key()), 60);
|
||||||
logger.info("NetworkGarbageCollector uses '{}' seconds for GC wait and '{} seconds for GC interval.", netGcWait, netGcInterval);
|
logger.info("NetworkGarbageCollector uses '{}' seconds for GC wait and '{}' seconds for GC interval.", netGcWait, netGcInterval);
|
||||||
|
|
||||||
for (final Long networkId : networkIds) {
|
for (final Long networkId : networkIds) {
|
||||||
if (!_networkModel.isNetworkReadyForGc(networkId)) {
|
if (!_networkModel.isNetworkReadyForGc(networkId)) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue