Commit d407ae71400da4491a96df0906f838d4ec2b76b0
1 parent
8159a484
update
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/bsth/data/schedule/late_adjust/LateAdjustHandle.java
| ... | ... | @@ -142,7 +142,7 @@ public class LateAdjustHandle implements ApplicationContextAware{ |
| 142 | 142 | //自动调整待发 到达时间 + 停靠时间 |
| 143 | 143 | long dt = Arith.addLong(gps.getTimestamp(), (sch.getLateMinute() * 60 * 1000)); |
| 144 | 144 | |
| 145 | - //超过2小时最大阈值,放弃 | |
| 145 | + //超过2小时最大阈值,放弃 -临时代码,待删除 | |
| 146 | 146 | if(Math.abs(dt - sch.getDfsjT()) > 1000 * 60 * 60 * 2){ |
| 147 | 147 | logger.info(sch.getClZbh() + " 超过误点调整阈值,放弃"); |
| 148 | 148 | } | ... | ... |