This is an automated email from the ASF dual-hosted git repository.
kaxilnaik pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 36918513f1b Fix codespell failures on main (#63236)
36918513f1b is described below
commit 36918513f1b603eb1a768c97f4f82980062ee22a
Author: Kaxil Naik <[email protected]>
AuthorDate: Tue Mar 10 01:06:15 2026 +0000
Fix codespell failures on main (#63236)
by-passes → bypasses, by-passing → bypassing, pre-selected → preselected
---
airflow-core/docs/tutorial/hitl.rst | 2 +-
.../src/airflow/api_fastapi/execution_api/routes/task_instances.py | 2 +-
.../tests/unit/api_fastapi/execution_api/versions/head/test_xcoms.py | 2 +-
go-sdk/pkg/api/client.go | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/airflow-core/docs/tutorial/hitl.rst
b/airflow-core/docs/tutorial/hitl.rst
index ab5c6ed0175..3a5e35c6f79 100644
--- a/airflow-core/docs/tutorial/hitl.rst
+++ b/airflow-core/docs/tutorial/hitl.rst
@@ -159,7 +159,7 @@ The method
``HITLOperator.generate_link_to_ui_from_context`` can be used to gene
- ``context`` – automatically passed to ``notify`` by the notifier
- ``base_url`` – (optional) the base URL of the Airflow UI; if not provided,
``api.base_url`` in the configuration will be used
-- ``options`` – (optional) pre-selected options for the UI page
+- ``options`` – (optional) preselected options for the UI page
- ``params_inputs`` – (optional) pre-loaded inputs for the UI page
This makes it easy to include actionable links in notifications or logs.
diff --git
a/airflow-core/src/airflow/api_fastapi/execution_api/routes/task_instances.py
b/airflow-core/src/airflow/api_fastapi/execution_api/routes/task_instances.py
index f22d7c12585..53e3bbb2a9f 100644
---
a/airflow-core/src/airflow/api_fastapi/execution_api/routes/task_instances.py
+++
b/airflow-core/src/airflow/api_fastapi/execution_api/routes/task_instances.py
@@ -133,7 +133,7 @@ def ti_run(
TI.hostname,
TI.unixname,
TI.pid,
- # This selects the raw JSON value, by-passing the deserialization
-- we want that to happen on the
+ # This selects the raw JSON value, bypassing the deserialization
-- we want that to happen on the
# client
column("next_kwargs", JSON),
)
diff --git
a/airflow-core/tests/unit/api_fastapi/execution_api/versions/head/test_xcoms.py
b/airflow-core/tests/unit/api_fastapi/execution_api/versions/head/test_xcoms.py
index f805971bf52..554c2ad2c84 100644
---
a/airflow-core/tests/unit/api_fastapi/execution_api/versions/head/test_xcoms.py
+++
b/airflow-core/tests/unit/api_fastapi/execution_api/versions/head/test_xcoms.py
@@ -394,7 +394,7 @@ class TestXComsSetEndpoint:
Test that deserialization works when XCom values are stored directly
in the DB with API Server.
This tests the case where the XCom value is stored from the Task API
where the value is serialized
- via Client SDK into JSON object and passed via the API Server to the
DB. It by-passes
+ via Client SDK into JSON object and passed via the API Server to the
DB. It bypasses
the XComModel.serialize_value and stores valid Python JSON compatible
objects to DB.
This test is to ensure that the deserialization works correctly in
this case as well as
diff --git a/go-sdk/pkg/api/client.go b/go-sdk/pkg/api/client.go
index f8abbf99cbc..fd7b77fd395 100644
--- a/go-sdk/pkg/api/client.go
+++ b/go-sdk/pkg/api/client.go
@@ -61,7 +61,7 @@ func (c *Client) WithBearerToken(token string)
(ClientInterface, error) {
// We don't use SetAuthToken/SetAuthScheme, as that produces a (valid,
but annoying) warning about using Auth
// over HTTP: "Using sensitive credentials in HTTP mode is not secure."
It's a time-limited-token though, so we
- // can reasonably ignore that here and setting the header directly
by-passes that
+ // can reasonably ignore that here and setting the header directly
bypasses that
rc.SetHeader("Authorization", fmt.Sprintf("Bearer %s", token))
opts := []ClientOption{