Subham-KRLX commented on PR #58583: URL: https://github.com/apache/airflow/pull/58583#issuecomment-3568819368
@potiuk Thank you for the review! I've added comprehensive documentation explaining the LTO-FIPS relationship. They are connected like Link-Time Optimization (LTO) uses MD5 checksums to verify object files during compilation. FIPS mode blocks MD5 as non-approved (per FIPS 140-2/140-3), causing Python builds with --with-lto to fail in FIPS environments. Solution: The PYTHON_LTO build arg allows disabling LTO for FIPS-compliant builds:docker build --build-arg PYTHON_LTO="false" ... The failing MongoDB test is unrelated to this PR (connection timeout, not FIPS/LTO). This PR only modifies build arguments and documentation. -- 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]
