Skip to content

Commit e1025a9

Browse files
committed
Missing char
1 parent 9784516 commit e1025a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine/orchestration/src/main/java/org/apache/cloudstack/engine/orchestration/NetworkOrchestrator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3557,7 +3557,7 @@ public void reallyRun() {
35573557
final List<Long> networkIds = _networksDao.findNetworksToGarbageCollect();
35583558
final int netGcWait = NumbersUtil.parseInt(_configDao.getValue(NetworkGcWait.key()), 60);
35593559
final int netGcInterval = NumbersUtil.parseInt(_configDao.getValue(NetworkGcInterval.key()), 60);
3560-
logger.info("NetworkGarbageCollector uses '{}' seconds for GC wait and '{} seconds for GC interval.", netGcWait, netGcInterval);
3560+
logger.info("NetworkGarbageCollector uses '{}' seconds for GC wait and '{}' seconds for GC interval.", netGcWait, netGcInterval);
35613561

35623562
for (final Long networkId : networkIds) {
35633563
if (!_networkModel.isNetworkReadyForGc(networkId)) {

0 commit comments

Comments
 (0)