Fix wrong priority converting

This commit is contained in:
MrHua269
2026-07-09 18:24:26 +08:00
parent 3082c3f1d1
commit 53ba351ca7
@@ -99,9 +99,7 @@ public class FlowSchedScheduledTask2CUTask implements PrioritisedExecutor.Priori
} }
private int priority() { private int priority() {
final int invertedPriority = Priority.TOTAL_SCHEDULABLE_PRIORITIES - this.priority.priority - 1; return this.priority.priority * 7;
return invertedPriority * 7;
} }
@Override @Override