fix(gateway): add error handling for tailscaleCleanup in shutdown
This commit is contained in:
parent
6859e1e6a6
commit
bcd5deff7d
@ -35,6 +35,7 @@ Status: unreleased.
|
||||
- macOS: keep custom SSH usernames in remote target. (#2046) Thanks @algal.
|
||||
|
||||
### Fixes
|
||||
- Gateway: add error handling for Tailscale cleanup in shutdown sequence to prevent interruption.
|
||||
- Web UI: improve WebChat image paste previews and allow image-only sends. (#1925) Thanks @smartprogrammer93.
|
||||
|
||||
## 2026.1.24-3
|
||||
|
||||
@ -45,7 +45,11 @@ export function createGatewayCloseHandler(params: {
|
||||
}
|
||||
}
|
||||
if (params.tailscaleCleanup) {
|
||||
await params.tailscaleCleanup();
|
||||
try {
|
||||
await params.tailscaleCleanup();
|
||||
} catch {
|
||||
/* ignore */
|
||||
}
|
||||
}
|
||||
if (params.canvasHost) {
|
||||
try {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user