dheerajturaga commented on code in PR #50425: URL: https://github.com/apache/airflow/pull/50425#discussion_r2083054107
########## providers/edge3/src/airflow/providers/edge3/cli/edge_command.py: ########## @@ -368,7 +371,8 @@ def start(self): except EdgeWorkerVersionException: logger.info("Version mismatch of Edge worker and Core. Quitting worker anyway.") finally: - remove_existing_pidfile(self.pid_file_path) + if not self.daemon: Review Comment: `run_command_with_daemon_options` likes to remove the PID once complete. Removing this ourself will cause it to throw and exception. -- 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: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org