Chore: provider error adjust
This commit is contained in:
parent
1849fe0974
commit
506ccf80d3
1 changed files with 2 additions and 2 deletions
|
@ -312,7 +312,7 @@ func parseProxies(cfg *RawConfig) (proxies map[string]C.Proxy, providersMap map[
|
||||||
|
|
||||||
pd, err := provider.ParseProxyProvider(name, mapping)
|
pd, err := provider.ParseProxyProvider(name, mapping)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, nil, err
|
return nil, nil, fmt.Errorf("parse proxy provider %s error: %w", name, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
providersMap[name] = pd
|
providersMap[name] = pd
|
||||||
|
@ -321,7 +321,7 @@ func parseProxies(cfg *RawConfig) (proxies map[string]C.Proxy, providersMap map[
|
||||||
for _, provider := range providersMap {
|
for _, provider := range providersMap {
|
||||||
log.Infoln("Start initial provider %s", provider.Name())
|
log.Infoln("Start initial provider %s", provider.Name())
|
||||||
if err := provider.Initial(); err != nil {
|
if err := provider.Initial(); err != nil {
|
||||||
return nil, nil, err
|
return nil, nil, fmt.Errorf("initial proxy provider %s error: %w", provider.Name(), err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue