* Timer wants, ms, not secs!

* May also be another bug lurking
ThreadPoolClientBranch
Justin Clarke Casey 2008-01-23 19:12:15 +00:00
parent 257f2b5583
commit dfbfa856bb
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ namespace OpenSim.Grid.AssetServer
/// </summary>
public class AssetStatsReporter
{
private Timer ageStatsTimer = new Timer(24 * 60 * 60);
private Timer ageStatsTimer = new Timer(24 * 60 * 60 * 1000);
private long assetRequestsToday;
public long AssetRequestsToday { get { return assetRequestsToday; } }