Commit fa864eb 1 parent b615145 commit fa864eb Copy full SHA for fa864eb
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1578,7 +1578,7 @@ void Scraper(bool bSingleShot)
1578
1578
_log (logattribute::INFO, " Scraper" , " Superblock not needed. age=" + ToString (sbage));
1579
1579
_log (logattribute::INFO, " Scraper" , " Sleeping for " + ToString (scraper_sleep () / 1000 ) +" seconds" );
1580
1580
1581
- if (!MilliSleep (nScraperSleep )) return ;
1581
+ if (!MilliSleep (scraper_sleep () )) return ;
1582
1582
}
1583
1583
}
1584
1584
@@ -1695,8 +1695,8 @@ void Scraper(bool bSingleShot)
1695
1695
1696
1696
ScraperHousekeeping ();
1697
1697
1698
- _log (logattribute::INFO, " Scraper" , " Sleeping for " + ToString (nScraperSleep / 1000 ) +" seconds" );
1699
- if (!MilliSleep (nScraperSleep )) return ;
1698
+ _log (logattribute::INFO, " Scraper" , " Sleeping for " + ToString (scraper_sleep () / 1000 ) +" seconds" );
1699
+ if (!MilliSleep (scraper_sleep () )) return ;
1700
1700
}
1701
1701
else
1702
1702
// This will break from the outer while loop if in singleshot mode and end execution after one pass.
@@ -1765,7 +1765,7 @@ void ScraperSubscriber()
1765
1765
// Use the same sleep interval configured for the scraper.
1766
1766
_log (logattribute::INFO, " ScraperSubscriber" , " Sleeping for " + ToString (scraper_sleep () / 1000 ) +" seconds" );
1767
1767
1768
- if (!MilliSleep (nScraperSleep )) return ;
1768
+ if (!MilliSleep (scraper_sleep () )) return ;
1769
1769
}
1770
1770
}
1771
1771
You can’t perform that action at this time.
0 commit comments