Commit c95f4f00 authored by Ajit Jagtap's avatar Ajit Jagtap
Browse files

Merge branch 'ab_Fix_graphdbDisabledHost' into 'devbranch'

Fix: Disabled graph db host added as instance

Closes MKCLOS/coreosv3/corestudio#346

See merge request !177
parents a7945b2c bb25486a
Branches kunal_SQLServer
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