This is an automated email from the ASF dual-hosted git repository.
potiuk 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 4a499ad4241 Fix spelling issues in ssh (#64883)
4a499ad4241 is described below
commit 4a499ad4241876850e4ad93d1db42e3d7b71a634
Author: Jarek Potiuk <[email protected]>
AuthorDate: Wed Apr 8 08:39:41 2026 +0300
Fix spelling issues in ssh (#64883)
---
docs/spelling_wordlist.txt | 1 +
providers/ssh/docs/changelog.rst | 6 +++---
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/docs/spelling_wordlist.txt b/docs/spelling_wordlist.txt
index 3cf9191b8c5..d038d92cac3 100644
--- a/docs/spelling_wordlist.txt
+++ b/docs/spelling_wordlist.txt
@@ -1198,6 +1198,7 @@ pooler
Popen
positionally
POSIX
+posix
postfix
Postgres
postgres
diff --git a/providers/ssh/docs/changelog.rst b/providers/ssh/docs/changelog.rst
index d923358c04b..c369eb12eb4 100644
--- a/providers/ssh/docs/changelog.rst
+++ b/providers/ssh/docs/changelog.rst
@@ -36,7 +36,7 @@ Breaking changes
* ``Replace 'sshtunnel' with native paramiko/asyncssh tunneling (#64299)``
With this change we provide minimal backward compatibility shim,
-Rather than fully reimplementing SSHTunnelForwarder's API surface. While most
+Rather than fully re-implementing SSHTunnelForwarder's API surface. While most
of the usages of the get_tunnel() method in the codebase should work without
modifications - some of the more advanced use cases might require code changes,
user need to inspect changes between the old SSHTunnelForwarder and SSHTunnel
@@ -55,9 +55,9 @@ The SSHTunnel provides:
AsyncSSHTunnel is a thin wrapper that:
-* Manages the lifecycle (listener + SSH connection cleanup in aexit)
+* Manages the lifecycle (listener + SSH connection cleanup in ``aexit``)
* Exposes .local_bind_port via listener.get_port()
-* Handles cleanup on aenter failure (closes SSH connection if
forward_local_port raises)
+* Handles cleanup on ``aenter`` failure (closes SSH connection if
forward_local_port raises)
* Follows the async with await hook.get_tunnel(...) pattern
* Eager socket binding in constructor