fs: Use connection string config as highest priority config #4996

This commit is contained in:
Nick Craig-Wood
2021-02-10 14:40:36 +00:00
parent 28f6efe955
commit e25ac4dcf0
3 changed files with 17 additions and 12 deletions

View File

@@ -274,7 +274,7 @@ func RemoteConfig(ctx context.Context, name string) {
fmt.Printf("Remote config\n")
f := mustFindByName(name)
if f.Config != nil {
m := fs.ConfigMap(f, name)
m := fs.ConfigMap(f, name, nil)
f.Config(ctx, name, m)
}
}