Merge pull request #11660 from filecoin-project/fix/lp-msg-retry
lpseal: Fix message retry
This commit is contained in:
commit
d4d0485669
@ -97,7 +97,7 @@ func (s *SealPoller) pollRetryCommitMsgSend(ctx context.Context, task pollTask,
|
|||||||
// make the pipeline entry seem like precommit send didn't happen, next poll loop will retry
|
// make the pipeline entry seem like precommit send didn't happen, next poll loop will retry
|
||||||
|
|
||||||
_, err := s.db.Exec(ctx, `UPDATE sectors_sdr_pipeline SET
|
_, err := s.db.Exec(ctx, `UPDATE sectors_sdr_pipeline SET
|
||||||
commit_msg_cid = NULL, task_id_commit_msg = NULL
|
commit_msg_cid = NULL, task_id_commit_msg = NULL, after_commit_msg = FALSE
|
||||||
WHERE commit_msg_cid = $1 AND sp_id = $2 AND sector_number = $3 AND after_commit_msg_success = FALSE`,
|
WHERE commit_msg_cid = $1 AND sp_id = $2 AND sector_number = $3 AND after_commit_msg_success = FALSE`,
|
||||||
*execResult.CommitMsgCID, task.SpID, task.SectorNumber)
|
*execResult.CommitMsgCID, task.SpID, task.SectorNumber)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -108,7 +108,7 @@ func (s *SealPoller) pollRetryPrecommitMsgSend(ctx context.Context, task pollTas
|
|||||||
// make the pipeline entry seem like precommit send didn't happen, next poll loop will retry
|
// make the pipeline entry seem like precommit send didn't happen, next poll loop will retry
|
||||||
|
|
||||||
_, err := s.db.Exec(ctx, `UPDATE sectors_sdr_pipeline SET
|
_, err := s.db.Exec(ctx, `UPDATE sectors_sdr_pipeline SET
|
||||||
precommit_msg_cid = NULL, task_id_precommit_msg = NULL
|
precommit_msg_cid = NULL, task_id_precommit_msg = NULL, after_precommit_msg = FALSE
|
||||||
WHERE precommit_msg_cid = $1 AND sp_id = $2 AND sector_number = $3 AND after_precommit_msg_success = FALSE`,
|
WHERE precommit_msg_cid = $1 AND sp_id = $2 AND sector_number = $3 AND after_precommit_msg_success = FALSE`,
|
||||||
*execResult.PrecommitMsgCID, task.SpID, task.SectorNumber)
|
*execResult.PrecommitMsgCID, task.SpID, task.SectorNumber)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user