mirror of
https://github.com/netbirdio/netbird.git
synced 2025-05-01 06:44:37 +02:00
Use SQLite store as default when running tests when env is not set (#1612)
This commit is contained in:
parent
b7a6cbfaa5
commit
bbea4c3cc3
@ -111,6 +111,6 @@ func NewStoreFromJson(dataDir string, metrics telemetry.AppMetrics) (Store, erro
|
|||||||
case SqliteStoreEngine:
|
case SqliteStoreEngine:
|
||||||
return NewSqliteStoreFromFileStore(fstore, dataDir, metrics)
|
return NewSqliteStoreFromFileStore(fstore, dataDir, metrics)
|
||||||
default:
|
default:
|
||||||
return nil, fmt.Errorf("unsupported store engine %s", kind)
|
return NewSqliteStoreFromFileStore(fstore, dataDir, metrics)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user