-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
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
Queued job fails when using subqueries with database driver #7
Comments
Sorry @kenwilliams5, I've had a good look at this, but I honestly have no idea where this "integer_in_raw" column is coming from. Have you tried searching your entire project for it? |
Yes, I have searched for that string from the root directory down...not just the app directory, but everywhere! It only shows up in the log files! |
BTW...this was a currently running production project, so not all users have login data yet. I don't know if that makes a difference, but thought I'd mention it. |
I'd recommend working it back, and figuring out which query is running to cause this, and then analyzing how that query is being built. Use the |
Closing this for now. Please post back here if you figure this out! |
After introducing the example "last login" to my project, a queued job fails when the database driver is being used. It works when using the sync driver.
Snippet from my user model:
My function that dispatches the job:
The job:
And the error I get:
I cannot figure out where the 'integer_in_raw' column it is complaining about is coming from. It doesn't have the problem when the queue driver is "sync"!
The text was updated successfully, but these errors were encountered: