This repository was archived by the owner on Sep 20, 2022. It is now read-only.
This repository was archived by the owner on Sep 20, 2022. It is now read-only.
Error when calling Destroy() from within a job handler function #26
Closed
Description
I've been seeing errors like the following lately. @albrow I was wondering if you could help me diagnose them.
ERR Error running script (call to f_7be0eed842fab7944ce1393b76bf8f46826c6656): @user_script:20: us er_script:20: attempt to concatenate local 'Status' (a boolean value)
I found the line it does this here
I'm trying to destroy the job from within my handler function once it reaches a certain state. Is it not safe to do this?
When I look up the job id I just get finished
and time
fields using hgetall
.
redis:6379[3]> hgetall jobs:bX8Vye9LGk80SDkbawj9qt3vvkpi
1) "finished"
2) "1435185638756948580"
3) "time"
4) "1435200038500419354"
redis:6379[3]>
Is it supposed to leave the job in redis after you destroy it? From the destroy_script.lua
docs it dosen't sound like it.