Commit bb25486a authored by Akshay Bharambe's avatar Akshay Bharambe
Browse files

Fix: Disabled graph db host added as instance

parent 27b7491b
Branches
Tags
2 merge requests!180Mep release 07042020,!177Fix: Disabled graph db host added as instance
Showing with 4 additions and 0 deletions
......@@ -98,6 +98,10 @@ func InitInstances(configs []Host) error {
instances = make(map[string]*Instance, len(configs))
for _, host := range configs {
if host.IsDisabled {
continue
}
client, err := NewClient(host)
if err != nil {
return err
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment