There was an error while loading. Please reload this page.
1 parent 9c454ec commit c0fb457Copy full SHA for c0fb457
sync/database.go
@@ -10,6 +10,11 @@ func (database *Database) ApplyDefaults(server *Server) {
10
if database.Connection == nil {
11
database.Connection = server.Connection.Clone()
12
}
13
+
14
+// default local connection
15
+if database.Local.Connection == nil {
16
+database.Local.Connection = &YamlCommandBuilderConnection{}
17
+}
18
19
20
func (database *Database) GetType() (dbtype string) {
0 commit comments