We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jobs don't get queued when arguments have invalid (non utf-8) encoding. Also you get a valid ID.
\Resque::enqueue() should fail with a meaningful error message
\Resque::enqueue() returns with a valid ID but there is no job in the Redis-DB.
Throw an exception, when json_encode in Resque::push() fails and check return value when Resque::push() gets called in Job::create()
Resque::enqueue('jobs', 'Test_Job', [ 'myStr' => utf8_decode('Düsseldorf'), ])
The text was updated successfully, but these errors were encountered:
I'd happily accept a PR with this change.
Sorry, something went wrong.
No branches or pull requests
Jobs don't get queued when arguments have invalid (non utf-8) encoding. Also you get a valid ID.
Expected Behavior
\Resque::enqueue() should fail with a meaningful error message
Current Behavior
\Resque::enqueue() returns with a valid ID but there is no job in the Redis-DB.
Possible Solution
Throw an exception, when json_encode in Resque::push() fails and check return value when Resque::push() gets called in Job::create()
Steps to Reproduce
My Environment
The text was updated successfully, but these errors were encountered: