Re: [SR-Users] Problem with update/retrigger a htable

2022-11-21 Thread Daniel-Constantin Mierla
Hello, the event route is executed on timer, and that can happen later that the item is actually expired. The reason is not to stress the access to the htable, looping every second. But you can set the timer interval to 1, if you really need it. As it is designed now, practically the item must

Re: [SR-Users] Problem with update/retrigger a htable

2022-11-21 Thread Daniel-Constantin Mierla
Hello, check the docs of the module, there is a modparam to set the timer interval, which by default is 20 secods. Then, to troubleshoot, run with debug=3 and watch the log messages for hints of what happens. Also, dump the htable via rpc to see its content. Cheers, Daniel On 21.11.22 08:50,

Re: [SR-Users] Problem with update/retrigger a htable

2022-11-21 Thread Bernd Krueger-Knauber
Hi Daniel-Constantin, I just found this parameter too. I set it now to 10 seconds, but for example a 30 second expire is only executed every 40 seconds. It looks, that I'm not able to set the same entry again inside of the event_route. Maybe it is deleted after the event_route is executed.