From: Michael Albinus Date: Sun, 3 May 2020 11:59:50 +0000 (+0200) Subject: Do not delete asynchronous Tramp processes due to session timeout X-Git-Tag: emacs-28.0.90~7461 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7f51ab5163635aa6bc369b5173af955c6a27f927;p=emacs.git Do not delete asynchronous Tramp processes due to session timeout * lisp/net/tramp-cmds.el (tramp-cleanup-connection): New optional argument KEEP-PROCESSES. * lisp/net/tramp-sh.el (tramp-timeout-session): Use it. (Bug#41042) --- diff --git a/lisp/net/tramp-cmds.el b/lisp/net/tramp-cmds.el index 7d353e262af..1742da86301 100644 --- a/lisp/net/tramp-cmds.el +++ b/lisp/net/tramp-cmds.el @@ -74,11 +74,13 @@ SYNTAX can be one of the symbols `default' (default), Each function is called with the current vector as argument.") ;;;###tramp-autoload -(defun tramp-cleanup-connection (vec &optional keep-debug keep-password) +(defun tramp-cleanup-connection + (vec &optional keep-debug keep-password keep-processes) "Flush all connection related objects. This includes password cache, file cache, connection cache, -buffers. KEEP-DEBUG non-nil preserves the debug buffer. -KEEP-PASSWORD non-nil preserves the password cache. +buffers, processes. KEEP-DEBUG non-nil preserves the debug +buffer. KEEP-PASSWORD non-nil preserves the password cache. +KEEP-PROCESSES non-nil preserves the asynchronous processes. When called interactively, a Tramp connection has to be selected." (interactive ;; When interactive, select the Tramp remote identification. @@ -116,7 +118,9 @@ When called interactively, a Tramp connection has to be selected." ;; Delete processes. (dolist (key (hash-table-keys tramp-cache-data)) (when (and (processp key) - (tramp-file-name-equal-p (process-get key 'vector) vec)) + (tramp-file-name-equal-p (process-get key 'vector) vec) + (or (not keep-processes) + (eq key (tramp-get-process vec)))) (tramp-flush-connection-properties key) (delete-process key))) diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el index a39d503e22b..21ef1efa0d4 100644 --- a/lisp/net/tramp-sh.el +++ b/lisp/net/tramp-sh.el @@ -4915,7 +4915,7 @@ If there is just some editing, retry it after 5 seconds." (run-at-time 5 nil 'tramp-timeout-session vec)) (tramp-message vec 3 "Timeout session %s" (tramp-make-tramp-file-name vec 'noloc)) - (tramp-cleanup-connection vec 'keep-debug))) + (tramp-cleanup-connection vec 'keep-debug nil 'keep-processes))) (defun tramp-maybe-open-connection (vec) "Maybe open a connection VEC.