TianyueHu opened a new issue #402: When the alpha time is different from the database time, it will go wrong. URL: https://github.com/apache/servicecomb-pack/issues/402 'creationTime' and 'expiryTime' is generated by alpha,but 'expiryTime' is compared to the database time. ``` @Query("SELECT t FROM TxEvent t " + "WHERE t.type IN ('TxStartedEvent', 'SagaStartedEvent') " + " AND t.expiryTime < CURRENT_TIMESTAMP AND NOT EXISTS( " + " SELECT t1.globalTxId FROM TxEvent t1 " + " WHERE t1.globalTxId = t.globalTxId " + " AND t1.localTxId = t.localTxId " + " AND t1.type != t.type" + ")") List<TxEvent> findTimeoutEvents(Pageable pageable); ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
