Browse Source

better log message

pull/2/head
Chris Lu 12 years ago
parent
commit
8af7906b3d
  1. 5
      weed-fs/src/pkg/storage/store.go

5
weed-fs/src/pkg/storage/store.go

@ -130,7 +130,7 @@ type JoinResult struct {
} }
func (s *Store) SetMaster(mserver string) { func (s *Store) SetMaster(mserver string) {
s.masterNode = mserver
s.masterNode = mserver
} }
func (s *Store) Join() error { func (s *Store) Join() error {
stats := new([]*VolumeInfo) stats := new([]*VolumeInfo)
@ -165,7 +165,8 @@ func (s *Store) Close() {
func (s *Store) Write(i VolumeId, n *Needle) uint32 { func (s *Store) Write(i VolumeId, n *Needle) uint32 {
if v := s.volumes[i]; v != nil { if v := s.volumes[i]; v != nil {
size := v.write(n) size := v.write(n)
if s.volumeSizeLimit < v.ContentSize()+uint64(size) {
if s.volumeSizeLimit < v.ContentSize()+uint64(size) && s.volumeSizeLimit >= v.ContentSize() {
log.Println("volume", i, "size is", v.ContentSize(), "close to", s.volumeSizeLimit)
s.Join() s.Join()
} }
return size return size

Loading…
Cancel
Save