start timer

master
Christopher 2020-06-10 16:18:19 +02:00
parent 7c219cc44c
commit 29174c12f2
1 changed files with 2 additions and 1 deletions

View File

@ -95,8 +95,9 @@ namespace OpenSim.Modules.DataValue
m_log.Info("[" + Name + "]: RateLimit is enabled");
m_timer = new Timer();
m_timer.Interval = 1000;
m_timer.Interval = 10000;
m_timer.Elapsed += resetRateLimit;
m_timer.Start();
}
else
{