Fix missing deprecation for execution_api_server_url mapping by Jadu07 · Pull Request #63949 · apache/airflow

@Jadu07

When execution_api_server_url was moved from [workers] to [core], the transition lacked a backward-compatibility deprecation mapping in parser.py.

As a result, Airflow 3 SDK ignores user configurations still placed under [workers], falling back to an often unresolvable Default URL derived from api.base_url. This caused Task SDK pods to crash on startup with an httpcore.ConnectError and prevented the task's hostname from being properly reported, resulting in Invalid URL log fetch errors in the UI.

This commit adds execution_api_server_url to deprecated_options to restore proper fallback behavior.