dianfu commented on code in PR #21926: URL: https://github.com/apache/flink/pull/21926#discussion_r1105449427
########## flink-python/pyflink/fn_execution/__init__.py: ########## @@ -15,3 +15,10 @@ # See the License for the specific language governing permissions and # limitations under the License. ################################################################################ + +import os + +if 'PYFLINK_CYTHON' in os.environ: Review Comment: What about named it to `PYFLINK_CYTHON_ENABLED` ########## flink-python/pyflink/fn_execution/__init__.py: ########## @@ -15,3 +15,10 @@ # See the License for the specific language governing permissions and # limitations under the License. ################################################################################ + +import os + +if 'PYFLINK_CYTHON' in os.environ: Review Comment: Also update the following documentation: https://nightlies.apache.org/flink/flink-docs-release-1.16/docs/dev/python/environment_variables/? -- 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]
