Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ Features
* Always clean favorite queries on save and fetch.


Bugfixes
---------
* Call `setsid()` to keep SSH tunnels from receiving Ctrl-C interrupts.


Documentation
---------
* Document double-return requirement after `/fs` in multi-line mode.
Expand Down
1 change: 1 addition & 0 deletions mycli/ssh_tunnel.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ def _run(self) -> None:
stdin=subprocess.DEVNULL,
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL,
start_new_session=True,
)
except OSError as exc:
self._startup_error = exc
Expand Down
Loading