Browse Source

Fix unaligned 64-bit atomic operation on ARM32 (#7958) (#7959)

pull/7965/head
Alasdair Macmillan 1 week ago
committed by GitHub
parent
commit
9778b9589e
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      weed/filer/meta_aggregator.go

2
weed/filer/meta_aggregator.go

@ -31,8 +31,8 @@ type MetaAggregator struct {
peerChansLock sync.Mutex
// notifying clients
ListenersLock sync.Mutex
ListenersCond *sync.Cond
ListenersWaits int64 // Atomic counter
ListenersCond *sync.Cond
}
// MetaAggregator only aggregates data "on the fly". The logs are not re-persisted to disk.

Loading…
Cancel
Save