Page MenuHomeSoftware Heritage

Refactor swh.vault factory so migration tool can work with it
Closed, MigratedEdits Locked

Description

Currently, it's not possible to make the migration tool work with the vault due to how the VaultBackend (postgresql) constructor is implemented.
The VaultBackend constructor expects the configuration required to instantiate its collaborator (VaultCache, ...).
But the current migration tool (cli) does not pass those around, so the overall instantiation of the VaultBackend in that context just break [1] (last stacktrace).

[1] T4305#86415