Copilot commented on code in PR #48461:
URL: https://github.com/apache/doris/pull/48461#discussion_r2015730859
##########
fe/fe-core/src/main/java/org/apache/doris/alter/SchemaChangeJobV2.java:
##########
@@ -650,7 +650,7 @@ protected void runRunningJob() throws AlterCancelException {
}
}
- if (healthyReplicaNum < expectReplicationNum / 2 + 1) {
+ if ((healthyReplicaNum < expectReplicationNum / 2 + 1)
&& !FeConstants.runningUnitTest) {
Review Comment:
Ensure that excluding test environments via 'FeConstants.runningUnitTest'
does not mask potential issues with healthy replica counts in production.
```suggestion
if (healthyReplicaNum < expectReplicationNum / 2 +
1) {
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]