damccorm commented on code in PR #35232: URL: https://github.com/apache/beam/pull/35232#discussion_r2143366857
########## sdks/python/apache_beam/io/external/xlang_debeziumio_it_test.py: ########## @@ -34,12 +36,32 @@ NUM_RECORDS = 1 +def _disable_debezium_test(): + # disable if run on <Java17 + try: + java = subprocess_server.JavaHelper.get_java() + result = subprocess.run([java, '-version'], + check=True, + capture_output=True, + text=True) + version_line = result.stderr.splitlines()[0] Review Comment: It would probably help to have a comment with the expected output here (`openjdk version "21.0.6" 2025-01-21`) -- 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: github-unsubscr...@beam.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org