chrisboulton / php-resque

PHP port of resque (Workers and Queueing)
MIT License
3.43k stars 759 forks source link

QUEUE=mail: Command not found. #361

Closed Aexus closed 6 years ago

Aexus commented 6 years ago

The running environment is FreeBSD, and the pcntl extension has been installed. What's the wrong thing? Can tell me how to deal with it, thank you.

danhunsaker commented 6 years ago

Your shell isn't treating QUEUE=mail as an environment variable assignment. Either switch to Bash, or check your shell's help system for the correct way to set evars, and set them separately before starting the worker process.

Aexus commented 6 years ago

Thanks