File tree 1 file changed +3
-1
lines changed
engine/orchestration/src/main/java/org/apache/cloudstack/engine/orchestration
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -3556,7 +3556,9 @@ public void reallyRun() {
3556
3556
3557
3557
final List <Long > networkIds = _networksDao .findNetworksToGarbageCollect ();
3558
3558
final int netGcWait = NumbersUtil .parseInt (_configDao .getValue (NetworkGcWait .key ()), 60 );
3559
- logger .info ("NetworkGarbageCollector uses '{}' seconds for GC interval." , netGcWait );
3559
+ final int netGcInterval = NumbersUtil .parseInt (_configDao .getValue (NetworkGcInterval .key ()), 60 );
3560
+ logger .info ("NetworkGarbageCollector uses '{}' seconds for GC wait." , netGcWait );
3561
+ logger .info ("NetworkGarbageCollector uses '{}' seconds for GC interval." , netGcInterval );
3560
3562
3561
3563
for (final Long networkId : networkIds ) {
3562
3564
if (!_networkModel .isNetworkReadyForGc (networkId )) {
You can’t perform that action at this time.
0 commit comments