Vadim Popovych
Vadim Popovych
```python engine = create_async_engine("postgresql+asyncpg://...") Session = async_sessionmaker(autocommit=False, autoflush=False, bind=engine, class_=AsyncSession) Base = declarative_base() class Item(Base): __tablename__ = "items" id = Column(BigInteger, autoincrement=True, primary_key=True) code = Column(String, unique=True, nullable=False) async def...
If, for example, job 2 throws a ValueError, the scheduler will continue work
But if job 2 will throw error like this `raise ValueError("aaasfsdafsghw45hj6tr5wj6rthewh"*10000)` will be the same error
I think it's because the thrown error text is too long `apscheduler.SerializationError: Serialized event object exceeds 7999 bytes in size` ``` | During handling of the above exception, another exception...
Yes, but if it's an error such as sqlalchemy error, then it stops the entire scheduler
[limit-jobreleased-size](https://github.com/agronholm/apscheduler/tree/limit-jobreleased-size) branch is working correctly with this type of error. Thank you!
Also interested in this functionality