mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2024-11-12 14:04:00 +01:00
only check sqlite parent if there could be one
This commit is contained in:
parent
8837660ba7
commit
d5e54cb576
@ -639,11 +639,11 @@ make_config! {
|
||||
fn validate_config(cfg: &ConfigItems) -> Result<(), Error> {
|
||||
// Validate connection URL is valid and DB feature is enabled
|
||||
let url = &cfg.database_url;
|
||||
if DbConnType::from_url(url)? == DbConnType::sqlite {
|
||||
if DbConnType::from_url(url)? == DbConnType::sqlite && url.contains('/') {
|
||||
let path = std::path::Path::new(&url);
|
||||
if let Some(parent) = path.parent() {
|
||||
if !parent.exists() {
|
||||
err!(format!("SQLite database directory `{}` does not exist", parent.display()));
|
||||
if !parent.is_dir() {
|
||||
err!(format!("SQLite database directory `{}` does not exist or is not a directory", parent.display()));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user