Closed predrag-rakic closed 8 months ago
This would be a breaking change, because init/1
must now return {:continue, :save_config}
in order for the vault to work properly. Any users who have overridden the init/1
function would need to update their override or their vaults will break.
This was fixed by #123.
Do not crash if vault is started more than once. Instead return
{:error, {:already_started, <pid>}}
so it can be handled by caller, which is proper OTP behavior I believe.