rawwar commented on issue #47003:
URL: https://github.com/apache/airflow/issues/47003#issuecomment-2708651674

   > Same for us
   
   As a workaround, does it work if you just remove the new lines and pass it 
as a single line?
   
   You can probably do the below and test it
   
   ```
   with open("privatekey.pem", "r") as pem_file:
       single_line_key = "".join(pem_file.read().splitlines())
   
   print(single_line_key)
   ```


-- 
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]

Reply via email to