I've got a Beanstalkd instance running and can put jobs on the queue without problems.
I can see the jobs are there:
$ echo -e "stats\r\n" | nc localhost 11300 | grep jobs
current-jobs-urgent: 0
current-jobs-ready: 3
current-jobs-reserved: 0
current-jobs-delayed: 0
current-jobs-buried: 0
total-jobs: 3
But trying to pull them off with an application fails, as does trying to see one with peek-ready:
$ echo -e "peek-ready\r\n" | nc localhost 11300
NOT_FOUND
What am I doing wrong?