CloneServerStatItem 时检查indexId和toIndexId是否相同 (#6478)

pull/6487/head
Little丶Dreams 2025-01-11 14:44:09 +08:00 committed by GitHub
parent 8f3e0dbd82
commit 364a24c580
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -72,6 +72,11 @@
return;
}
if(indexId == toIndexId)
{
return;
}
var stat = _lstServerStat.FirstOrDefault(t => t.IndexId == indexId);
if (stat == null)
{