I make a file in my rails app /bin/restart_resque.sh
kill `cat tmp/pids/scheduler.pid`
When I execute bin/restart_resque.sh
,I got the error
: arguments must be process or job IDs624
and the process is still working.
Then I change the file to :
kill 2624
I got the same error,but the process 2624
is do exist.why?