casra-developers commented on pull request #16110:
URL: https://github.com/apache/airflow/pull/16110#issuecomment-861199983


   I think the biggest thing remaining is the workaround for the Executor bug.  
Since I am not quite sure where the problem is exactly I don't know how 
relevant this comment is.
   I saw some remarks about the path separators on Windows being different from 
POSIX. In my experience, when using Python, paths can be written usually either 
way on Windows e.g.
   ```
   # works
   Popen('c:/Windows/System32/notepad.exe')
   # also works
   Popen('c:\\Windows\\System32\\notepad.exe')
   ```
   To avoid any issues I usually tend to use os.path.join(...)


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