[prev in list] [next in list] [prev in thread] [next in thread] 

List:       openser-users
Subject:    Re: [SR-Users] =?utf-8?q?pseudovariable_values_written_from_app=5Flua?=
From:       elactrum () jamailca ! com
Date:       2012-09-27 16:05:45
Message-ID: c6a45dca3bf8373cba14e2b2337a9589 () qcslink ! com
[Download RAW message or body]

On 2012-09-27 10:19, Daniel-Constantin Mierla wrote:
> Hello,
>
> On 9/26/12 9:47 PM, elactrum@jamailca.com wrote:
>> Hi,
>>
>> I am using app_lua to frequently store some data in htable and avp 
>> entries, using sr.pv.sets. When I read the values using sr.pv.get 
>> immediately after writing them, they seem correct. However, when I 
>> read them later from Lua, I have noticed that sometimes the value is 
>> incorrect or nil. Am I doing something wrong?
>>
>> The following code uses rtimer to duplicate the problem on startup, 
>> printing the errors to syslog.
>>
>> Tested on version: kamailio 3.3.1 (i386/linux) 2d0f6f
>>
>> ###############
>> # kamailio.cfg
>> ###############
>> loadmodule    "pv.so"
>> loadmodule    "xlog.so"
>> loadmodule    "htable.so"
>> loadmodule    "rtimer.so"
>> loadmodule    "app_lua"
>>
>> modparam("htable", "htable", "status=>size=14;autoexpire=0;")
>>
>> modparam("rtimer", "timer", "name=ta;interval=10;mode=1")
>> modparam("rtimer", "exec", "timer=ta;route=LUA_TEST")
>>
>> # the following path may need to change depending on filesystem 
>> setup
>> modparam("app_lua", "load", "/etc/kamailio/kamailio.lua")
>>
>> route
>> {
>>     route(LUA_TEST);
>> }
>>
>> route[LUA_TEST] {
>>
>>         $var(lua_test_key) = $(pp{s.toupper}) + "::";
>> lua_runstring("htable_test([[status=>$var(lua_test_key)]])");
>> lua_runstring("avp_test([[status=>$var(lua_test_key)]])");
>>
>> }
>>
>> ----------------
>> -- kamailio.lua
>> ----------------
>> -- Test of sr.pv operations in Lua
>>
>> function htable_test (namekey)
>>     local pvar_prefix = "$sht("..namekey
>>     pvar_test(pvar_prefix)
>> end
>>
>> function avp_test ( name )
>>     local pvar_prefix = "$avp("..name
>>     pvar_test(pvar_prefix)
>> end
>>
>>
>> function pvar_test ( pvar_prefix )
>>
>>     for value = 10000, 10050 do
>>         local pvar = pvar_prefix..value..")"
>>         --sr.log("info", "Lua attempting to set '"..pvar.."' to 
>> value '"..value.."'")
>>         sr.pv.sets(pvar, value)
>>     end
>>
>>     for value = 10000, 10050 do
>>         -- now we check what was stored
>>         local pvar = pvar_prefix..value..")"
>>         local checkvar = sr.pv.get(pvar)
>>         if ( tostring(checkvar) ~= tostring(value) ) then
>>             sr.err(string.format("CHECK: Lua checking pvar '%s' and 
>> got value '%s' which is NOT '%s'",
>>                 tostring(pvar),
>>                 tostring(checkvar),
>>                 tostring(value)
>>             ))
>>         end
>>
>>     end
>> end
>> -- end of kamailio.lua
>
> can you provide the log messages?

Sorry, I should have included them with the initial posting. I have 
attached an example of the first seven executions of rtimer after a 
fresh startup. Each startup of kamailio results in slightly different 
error values, but the pattern seems similar.

Please let me know if it would be good to send more logs or anything 
else.


> Note that avps are destroyed after
> execution of the rtimer route - avps are attached to
> message/transaction. Hash table values should stay no matter where 
> are
> set.

Thanks for the reminder. I think in this case the test is valid, 
though, since the avp values are written and read within a single rtimer 
route.

>
> Cheers,
> Daniel

Thanks for the help!

-Andrew
["lualogsexample.txt" (text/plain)]

Sep 27 15:43:52 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10000)' and got \
                value '10023' which is NOT '10000'
Sep 27 15:43:52 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10002)' and got \
                value '10019' which is NOT '10002'
Sep 27 15:43:52 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10009)' and got \
                value '10014' which is NOT '10009'
Sep 27 15:43:52 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10013)' and got \
                value '10019' which is NOT '10013'
Sep 27 15:43:52 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10021)' and got \
value '10029' which is NOT '10021'

Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10001)' and got \
                value '10034' which is NOT '10001'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10003)' and got \
                value '10047' which is NOT '10003'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10004)' and got \
                value '10047' which is NOT '10004'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10008)' and got \
                value '10035' which is NOT '10008'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10009)' and got \
                value '10044' which is NOT '10009'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10010)' and got \
                value '10021' which is NOT '10010'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10011)' and got \
                value '10024' which is NOT '10011'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10012)' and got \
                value '10016' which is NOT '10012'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10013)' and got \
                value '10045' which is NOT '10013'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10014)' and got \
                value '10023' which is NOT '10014'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10016)' and got \
                value '10019' which is NOT '10016'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10018)' and got \
                value '10033' which is NOT '10018'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10019)' and got \
                value '10022' which is NOT '10019'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10020)' and got \
                value '10025' which is NOT '10020'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10021)' and got \
                value '10033' which is NOT '10021'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10022)' and got \
                value '10023' which is NOT '10022'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10023)' and got \
                value '10049' which is NOT '10023'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10024)' and got \
                value '10039' which is NOT '10024'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10025)' and got \
                value '10046' which is NOT '10025'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10026)' and got \
                value '10038' which is NOT '10026'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10030)' and got \
                value '10041' which is NOT '10030'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10000)' and got \
                value '10048' which is NOT '10000'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10002)' and got \
                value '10042' which is NOT '10002'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10004)' and got \
                value '10036' which is NOT '10004'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10014)' and got \
                value '10043' which is NOT '10014'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10017)' and got \
                value '10040' which is NOT '10017'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10029)' and got \
                value '10031' which is NOT '10029'
Sep 27 15:44:02 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10037)' and got \
value '10041' which is NOT '10037'

Sep 27 15:44:12 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10004)' and got \
                value '10047' which is NOT '10004'
Sep 27 15:44:12 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10014)' and got \
                value '10022' which is NOT '10014'
Sep 27 15:44:12 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10021)' and got \
                value '10033' which is NOT '10021'
Sep 27 15:44:12 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10024)' and got \
                value '10039' which is NOT '10024'
Sep 27 15:44:12 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10026)' and got \
                value '10038' which is NOT '10026'
Sep 27 15:44:12 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10000)' and got \
                value '10048' which is NOT '10000'
Sep 27 15:44:12 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10002)' and got \
                value '10042' which is NOT '10002'
Sep 27 15:44:12 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10004)' and got \
                value '10036' which is NOT '10004'
Sep 27 15:44:12 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10014)' and got \
                value '10043' which is NOT '10014'
Sep 27 15:44:12 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10017)' and got \
                value '10040' which is NOT '10017'
Sep 27 15:44:12 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10029)' and got \
                value '10031' which is NOT '10029'
Sep 27 15:44:12 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10037)' and got \
value '10041' which is NOT '10037'

Sep 27 15:44:22 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10004)' and got \
                value '10047' which is NOT '10004'
Sep 27 15:44:22 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10014)' and got \
                value '10022' which is NOT '10014'
Sep 27 15:44:22 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10021)' and got \
                value '10033' which is NOT '10021'
Sep 27 15:44:22 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10024)' and got \
                value '10039' which is NOT '10024'
Sep 27 15:44:22 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10026)' and got \
                value '10038' which is NOT '10026'
Sep 27 15:44:22 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10000)' and got \
                value '10048' which is NOT '10000'
Sep 27 15:44:22 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10002)' and got \
                value '10042' which is NOT '10002'
Sep 27 15:44:22 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10004)' and got \
                value '10036' which is NOT '10004'
Sep 27 15:44:22 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10014)' and got \
                value '10043' which is NOT '10014'
Sep 27 15:44:22 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10017)' and got \
                value '10040' which is NOT '10017'
Sep 27 15:44:22 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10029)' and got \
                value '10031' which is NOT '10029'
Sep 27 15:44:22 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10037)' and got \
value '10041' which is NOT '10037'

Sep 27 15:44:32 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10004)' and got \
                value '10047' which is NOT '10004'
Sep 27 15:44:32 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10014)' and got \
                value '10022' which is NOT '10014'
Sep 27 15:44:32 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10021)' and got \
                value '10033' which is NOT '10021'
Sep 27 15:44:32 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10024)' and got \
                value '10039' which is NOT '10024'
Sep 27 15:44:32 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10026)' and got \
                value '10038' which is NOT '10026'
Sep 27 15:44:32 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10000)' and got \
                value '10048' which is NOT '10000'
Sep 27 15:44:32 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10002)' and got \
                value '10042' which is NOT '10002'
Sep 27 15:44:32 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10004)' and got \
                value '10036' which is NOT '10004'
Sep 27 15:44:32 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10014)' and got \
                value '10043' which is NOT '10014'
Sep 27 15:44:32 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10017)' and got \
                value '10040' which is NOT '10017'
Sep 27 15:44:32 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10029)' and got \
                value '10031' which is NOT '10029'
Sep 27 15:44:32 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10037)' and got \
value '10041' which is NOT '10037'

Sep 27 15:44:42 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10004)' and got \
                value '10047' which is NOT '10004'
Sep 27 15:44:42 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10014)' and got \
                value '10022' which is NOT '10014'
Sep 27 15:44:42 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10021)' and got \
                value '10033' which is NOT '10021'
Sep 27 15:44:42 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10024)' and got \
                value '10039' which is NOT '10024'
Sep 27 15:44:42 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10026)' and got \
                value '10038' which is NOT '10026'
Sep 27 15:44:42 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10000)' and got \
                value '10048' which is NOT '10000'
Sep 27 15:44:42 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10002)' and got \
                value '10042' which is NOT '10002'
Sep 27 15:44:42 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10004)' and got \
                value '10036' which is NOT '10004'
Sep 27 15:44:42 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10014)' and got \
                value '10043' which is NOT '10014'
Sep 27 15:44:42 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10017)' and got \
                value '10040' which is NOT '10017'
Sep 27 15:44:42 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10029)' and got \
                value '10031' which is NOT '10029'
Sep 27 15:44:42 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10037)' and got \
value '10041' which is NOT '10037'

Sep 27 15:44:52 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10004)' and got \
                value '10047' which is NOT '10004'
Sep 27 15:44:52 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10014)' and got \
                value '10022' which is NOT '10014'
Sep 27 15:44:52 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10021)' and got \
                value '10033' which is NOT '10021'
Sep 27 15:44:52 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10024)' and got \
                value '10039' which is NOT '10024'
Sep 27 15:44:52 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$sht(status=>11139::10026)' and got \
                value '10038' which is NOT '10026'
Sep 27 15:44:52 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10000)' and got \
                value '10048' which is NOT '10000'
Sep 27 15:44:52 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10002)' and got \
                value '10042' which is NOT '10002'
Sep 27 15:44:52 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10004)' and got \
                value '10036' which is NOT '10004'
Sep 27 15:44:52 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10014)' and got \
                value '10043' which is NOT '10014'
Sep 27 15:44:52 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10017)' and got \
                value '10040' which is NOT '10017'
Sep 27 15:44:52 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10029)' and got \
                value '10031' which is NOT '10029'
Sep 27 15:44:52 hostname daemon.err /usr/sbin/kamailio[11139]: ERROR: app_lua \
[app_lua_sr.c:75]: CHECK: Lua checking pvar '$avp(status=>11139::10037)' and got \
value '10041' which is NOT '10037'



_______________________________________________
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list
sr-users@lists.sip-router.org
http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic