Skip to content

Commit 480bdc2

Browse files
committed
just log dont error
1 parent cd5e778 commit 480bdc2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

internal/msgqueue/olap_tee_queue.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ func (m *OLAPTeeMessageQueue) Clone() (func() error, MessageQueue, error) {
3939
cleanupStandby, standbyClone, err = m.standby.Clone()
4040
if err != nil {
4141
_ = cleanupPrimary()
42-
return nil, nil, err
42+
// just log the error but don't return it
43+
fmt.Printf("MIGRATION failed to clone standby message queue: %v\n", err)
4344
}
4445
}
4546

0 commit comments

Comments
 (0)