diff options
Diffstat (limited to 'weed/storage/store.go')
| -rw-r--r-- | weed/storage/store.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/storage/store.go b/weed/storage/store.go index 2b244cf70..9bfcae7ba 100644 --- a/weed/storage/store.go +++ b/weed/storage/store.go @@ -441,7 +441,7 @@ func (s *Store) WriteVolumeNeedle(i needle.VolumeId, n *needle.Needle, checkCook err = fmt.Errorf("volume %d is read only", i) return } - _, _, isUnchanged, err = v.writeNeedle2(n, checkCookie, fsync || s.isStopping) + _, _, isUnchanged, err = v.writeNeedle2(n, checkCookie, fsync && !s.isStopping) return } glog.V(0).Infoln("volume", i, "not found!") |
