mik-laj commented on pull request #6627:
URL: https://github.com/apache/airflow/pull/6627#issuecomment-640178886


   If anyone has problems with this change, they can use this code to disable 
this change.
   ```python
   from airflow.task.task_runner import standard_task_runner
   standard_task_runner.CAN_FORK=False
   
   import os
   import argcomplete
   from airflow.configuration import conf
   from airflow.bin.cli import CLIFactory
   if __name__ == '__main__':
       if conf.get("core", "security") == 'kerberos':
           os.environ['KRB5CCNAME'] = conf.get('kerberos', 'ccache')
           os.environ['KRB5_KTNAME'] = conf.get('kerberos', 'keytab')
       parser = CLIFactory.get_parser()
       argcomplete.autocomplete(parser)
       args = parser.parse_args()
       args.func(args)
   ```


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

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to