sheng-jie opened a new issue, #6037: URL: https://github.com/apache/seatunnel/issues/6037
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/seatunnel/issues?q=is%3Aissue+label%3A%22bug%22) and found no similar issues. ### What happened I build seatunnel pacakge with latest dev branch to test new merged [rest -api-feature ](https://github.com/apache/seatunnel/pull/5949). After I run the job, when I call `/hazelcast/rest/maps/finished-jobs/:state` only 204 returned. ### SeaTunnel Version latest dev branch ### SeaTunnel Config ```conf env { execution.parallelism = 1 job.mode = "BATCH" } source { FakeSource { result_table_name = "fake1" row.num = 16 schema = { fields { name = "string" age = "int" created_time = "timestamp" destroyed_time = "timestamp" } } } } transform { SQL { source_table_name = "fake1" result_table_name = "fake2" query = "SELECT name, age, created_time, destroyed_time, CURRENT_DATE() today, DATEDIFF(created_time, destroyed_time, 'SECOND') duration FROM fake1 " } SQL { source_table_name = "fake2" result_table_name = "fake3" query = "SELECT name, age, today, duration FROM fake2 " } } sink { Console { source_table_name = "fake3" } } ``` ### Running Command ```shell bin/seatunnel.sh -c config/demo.conf ``` ### Error Exception ```log no exception ``` ### Zeta or Flink or Spark Version Zeta ### Java or Scala Version _No response_ ### Screenshots  ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- 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]
