You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When following the example using SharedPostgresStorage, the database is not initialized with migrations, as is performed when using PostgresStorage::setup(&pool).await.unwrap();.
This means that when using the SharedPostgresStorage, an explicit call must first be made to PostgresStorage::setup.
Expected behavior
It is expected that either the setup is handled by SharedPostgresStorage, or that the example shows the explicit call to perform the setup sequence.
What happened?
When following the example using
SharedPostgresStorage, the database is not initialized with migrations, as is performed when usingPostgresStorage::setup(&pool).await.unwrap();.This means that when using the
SharedPostgresStorage, an explicit call must first be made toPostgresStorage::setup.Expected behavior
It is expected that either the setup is handled by
SharedPostgresStorage, or that the example shows the explicit call to perform the setup sequence.Steps to reproduce
https://docs.rs/apalis-postgres/1.0.0-beta.3/apalis_postgres/#shared-example
Minimal code example
Version
1.0.0-beta.x
Environment
Relevant log output
Additional context
Very cool to see all the progress being made on Apalis!