mxdev88
mxdev88
What database backend are you using? if postgresql, sqlalchemy removed in 1.4 support for URLs of the form `postgres://` for `postgresql://`. [see this](https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html#change-3687655465c25a39b968b4f5f6e9170b).
Another option may be to act on the part that runs the job rather than on the job itself. Any thoughts on this?
Hi @viniciuschiele - made another attempt, this time by decorating executors rather than the jobs. Let me know what you think. thanks!
Looks good. Could you also make the `wait` option available? being able to tell `wait=False` when shutting down the scheduler would be helpful in my use cases. https://apscheduler.readthedocs.io/en/stable/userguide.html#shutting-down-the-scheduler Thanks
I ran into the same issue and fixed it by adding what you suggest in the func. However I was just wondering whether this could be improved within the library...
@viniciuschiele I see your point. How about decorating `BaseExecutor.submit_job` instead then? After initializing the scheduler, could loop through the scheduler executors to make sure they will submit job with the...
is this feature on radar for near implementation? I agree with @Cally99. Being able to modify/pass spider args and settings args on scheduling or creating tasks is a must have.
I'm having the same issue when mounting volume to ```/var/lib/odoo```. the container starts but the server does not serve any files. I suspect that the local being empty is what...
> postponing this in favour of #187/3rd solution (Unify queues/dbs) hi @Digenis, it shouldn't be an issue to make queues configurable even if one wants to use other projects mentioned...
Not 100% sure to understand your use case. Take a look at [finished to keep](https://github.com/scrapy/scrapyd/blob/master/docs/config.rst#finished_to_keep) and [jobstorage](https://github.com/scrapy/scrapyd/blob/master/docs/config.rst#jobstorage) which you could try by using the master branch.