Skip to content

Commit

Permalink
DDL: fix update progress of available table (#38677)
Browse files Browse the repository at this point in the history
close #38676
  • Loading branch information
hehechen authored Oct 27, 2022
1 parent c4316fb commit 1cf6e77
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ddl/ddl_tiflash_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -468,8 +468,9 @@ func pollAvailableTableProgress(schemas infoschema.InfoSchema, ctx sessionctx.Co
}
pollTiFlashContext.ProgressCache[availableTableID.ID] = progress
}
next := element.Next()
pollTiFlashContext.UpdatingProgressTables.Remove(element)
element = element.Next()
element = next
}
}

Expand Down

0 comments on commit 1cf6e77

Please sign in to comment.