Skip to content

Commit f69894b

Browse files
committed
fix shard stuck on recovering status
1 parent eac7733 commit f69894b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

dagstore.go

+3
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,8 @@ func (d *DAGStore) Start(ctx context.Context) error {
273273
var toRegister, toRecover []*Shard
274274
for _, s := range d.shards {
275275
switch s.state {
276+
case ShardStateRecovering:
277+
fallthrough
276278
case ShardStateErrored:
277279
switch d.config.RecoverOnStart {
278280
case DoNotRecover:
@@ -282,6 +284,7 @@ func (d *DAGStore) Start(ctx context.Context) error {
282284
s.recoverOnNextAcquire = true
283285
case RecoverNow:
284286
log.Infow("start: recovering failed shard immediately", "shard", s.key, "error", s.err)
287+
s.state = ShardStateErrored //force set state to error for recovering shard
285288
toRecover = append(toRecover, s)
286289
}
287290

0 commit comments

Comments
 (0)