Merge branch 'master' into mq-subscribe

This commit is contained in:
chrislu
2024-05-02 08:13:53 -07:00
2 changed files with 4 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ import (
"sync" "sync"
) )
// just for testing // default Sequencer
type MemorySequencer struct { type MemorySequencer struct {
counter uint64 counter uint64
sequenceLock sync.Mutex sequenceLock sync.Mutex

View File

@@ -59,7 +59,7 @@ type MasterServer struct {
preallocateSize int64 preallocateSize int64
Topo *topology.Topology Topo *topology.Topology
vg *topology.VolumeGrowth vg *topology.VolumeGrowth
volumeGrowthRequestChan chan *topology.VolumeGrowRequest volumeGrowthRequestChan chan *topology.VolumeGrowRequest
@@ -347,6 +347,8 @@ func (ms *MasterServer) createSequencer(option *MasterOption) sequence.Sequencer
glog.Error(err) glog.Error(err)
seq = nil seq = nil
} }
case "raft":
fallthrough
default: default:
seq = sequence.NewMemorySequencer() seq = sequence.NewMemorySequencer()
} }