Sondre Lillebø Gundersen
Sondre Lillebø Gundersen
This replicates it for me 👍 Really only the model and query is enough ```python import asyncio from datetime import datetime, date from typing import Optional import ormar import sqlalchemy...
Looks like querying for an integer with a string is also no longer supported. This seems like a slight regression in DX 🙂 ``` DataError("invalid input for query argument $1:...
It looks like `aiopg` handled the date casting like before. I'll use this for a bit and report back, but looks good 👍
I noticed after typing this out, that https://github.com/samuelcolvin/arq/pull/274 is relevant here. It adds the Celery-equivalents of `task_prerun` and `task_postrun`. To completely solve _my_ use-case I believe I would also need...
Since #274 was merged, all this would require is: 1. For a "on-enqueue"-style hook to be added 2. For there to be a way to set state in that hook,...
Just out of curiosity, how will a middleware concept work for something like event hooks, where you need things to happen in distinct places in an events lifecycle? Also, this...
Yes that's right; but a package cannot make this the default behavior for all tasks queued with the `enqueue_job` method call, which is what I'd like to enable. In other...
I think you should be able to get logging to work if you configure logging in your app. To my knowledge, arq just uses python logging, so that's what you...
The issue persists for both import paths, unfortunately
Before I do, just to eliminate the possibility of long unnecessary waits for several parties: do you not know of any difference between `define` and `attrs` decorators that could explain...