Mathieu Lemay

Results 14 comments of Mathieu Lemay

Any updates on this? I'm facing the same issue with Zappa 0.54.1.

I don't think it has anything to do with the `relative` property. It's as @joelbixbyrevel found, when celery beat is started, the schedules are recreated in redis with a `last_run_time`...

I actually have a similar error with compose 2.1.0. I suspect it's related. My project consist of the following files. `Dockerfile` ``` FROM alpine ARG USERNAME ARG API_KEY ENV USERNAME="${USERNAME}"...

I have the same issue with PyCharm 2022.2.2 CE. There is an interesting bit in the error log: ``` Caused by: java.lang.UnsupportedClassVersionError: ski/chrzanow/foldableprojectview/projectView/FoldableTreeStructureProvider has been compiled by a more recent...

I can still reproduce the issue with `SQLModel==0.0.8` and `SQLAlchemy==1.4.41` ```python from sqlalchemy import ForeignKeyConstraint from sqlalchemy.orm import RelationshipProperty, selectinload from sqlmodel import Field, Relationship, SQLModel, select class Parent(SQLModel, table=True):...

@byrman The workaround works so I'm gonna use that. Thanks for the fix!