We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f06b70 commit 4b4180bCopy full SHA for 4b4180b
mithril-aggregator/src/dependency_injection/builder.rs
@@ -361,7 +361,8 @@ impl DependenciesBuilder {
361
let _connection = self.build_sqlite_connection(
362
SQLITE_FILE_CARDANO_TRANSACTION,
363
mithril_persistence::database::cardano_transaction_migration::get_migrations(),
364
- true,
+ // Don't vacuum the Cardano transactions database as it can be very large
365
+ false,
366
)?;
367
368
let connection_pool = Arc::new(SqliteConnectionPool::build(connection_pool_size, || {
0 commit comments