Browse Source

Merge pull request #533 from xxr3376/patch-1

Fix panic error when target collection is not exist.
pull/544/head
Chris Lu 8 years ago
committed by GitHub
parent
commit
0909f669a0
  1. 3
      weed/topology/topology.go

3
weed/topology/topology.go

@ -116,6 +116,9 @@ func (t *Topology) GetVolumeLayout(collectionName string, rp *storage.ReplicaPla
func (t *Topology) FindCollection(collectionName string) (*Collection, bool) {
c, hasCollection := t.collectionMap.Find(collectionName)
if !hasCollection {
return nil, false
}
return c.(*Collection), hasCollection
}

Loading…
Cancel
Save