yuxiqian commented on PR #3660:
URL: https://github.com/apache/flink-cdc/pull/3660#issuecomment-2482060697

   Just noticed another thing: By dropping Flink versions prior to 1.19, we 
don't need these compatibility codes in `PipelineTestEnvironment` and 
`FlinkContainerTestEnvironment`:
   
   ```java
   if (version.compareTo(parseVersion("1.17.0")) >= 0) {
       // Flink 1.17 renames `env.java.opts` to `env.java.opts.all`
       javaOptsConfig = "env.java.opts.all: 
-Doracle.jdbc.timezoneAsRegion=false";
   } else {
       // Legacy Flink version, might drop their support in near future
       javaOptsConfig = "env.java.opts: -Doracle.jdbc.timezoneAsRegion=false";
   }
   ```
   
   


-- 
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: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to