aboutsummaryrefslogtreecommitdiff
path: root/weed/topology/volume_growth.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/topology/volume_growth.go')
-rw-r--r--weed/topology/volume_growth.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/topology/volume_growth.go b/weed/topology/volume_growth.go
index 44462aa87..d856bbc22 100644
--- a/weed/topology/volume_growth.go
+++ b/weed/topology/volume_growth.go
@@ -34,7 +34,7 @@ type VolumeGrowRequest struct {
}
func (vg *VolumeGrowRequest) Equals(req *VolumeGrowRequest) bool {
- return reflect.DeepEqual(existingReq.Option, req.Option) && vg.Count == req.Count
+ return reflect.DeepEqual(vg.Option, req.Option) && vg.Count == req.Count && vg.Force == req.Force
}
type volumeGrowthStrategy struct {