Will Da Silva
Will Da Silva
Thank you for reporting this issue. I'll look into this later today.
`JSONSerializer()` is not necessary to reproduce this, nor is Postgres: ```python >>> data_store = SQLAlchemyDataStore(engine_or_url="sqlite:///example.db") >>> scheduler = await AsyncScheduler(data_store=data_store).__aenter__() >>> schedule = await scheduler.add_schedule(task, id='this-is-the-end', trigger=CronTrigger.from_crontab('* * * *...
@agronholm Good idea ```python >>> s = PickleSerializer() >>> attrs.asdict(s.deserialize(s.serialize(CronTrigger.from_crontab("* * * * *")))) Traceback (most recent call last): [ truncated ] AttributeError: year >>> attrs.asdict(CronTrigger.from_crontab("* * * * *"))...
@agronholm I could probably address this within a week or two, but if you'd like this resolved promptly it'd be best if you take care of it. This issue isn't...
@agronholm This is now impacting me personally. Have you made any progress? I can continue looking into this, and hopefully create a PR.
@agronholm I've got a PR up that seems to fix the issue. I have to leave for a few hours now, but I'll add some tests to the PR later...
This would still be nice to have. Of the options above, I'd go with option 1 (the addition of `application_credentials_path` and `application_credentials_json`), while also leaving `application_credentials` functioning as an undocumented...
@stefreak #5666 would satisfy my use case, but I can still imagine others may want the feature I described in this issue. One thing I can imagine is if the...
Still relevant
Still relevant. CC @sbalnojan