Skip to content

Commit

Permalink
fix:实例重注册问题修复 (#872)
Browse files Browse the repository at this point in the history
  • Loading branch information
chuntaojun authored Dec 24, 2022
1 parent 8e59eb1 commit 03fa330
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions store/sqldb/instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -904,9 +904,9 @@ func batchDeleteInstanceMeta(tx *BaseTx, instances []*model.Instance) error {
builder := strings.Builder{}
for _, entry := range instances {
// If instance is first registration, no need to participate in the following METADATA cleaning action
if entry.FirstRegis {
continue
}
// if entry.FirstRegis {
// continue
// }

ids = append(ids, entry.ID())

Expand Down

0 comments on commit 03fa330

Please sign in to comment.