mirror of
https://github.com/smittix/intercept.git
synced 2026-07-05 16:18:12 -07:00
v2.26.10: fix APRS stop timeout and inverted SDR device status (#194)
The APRS stop endpoint terminated two processes sequentially (up to 4s with PROCESS_TERMINATE_TIMEOUT=2s each) while the frontend fetch timed out at 2.2s. This caused console errors and left the SDR device claimed in the registry until termination finished, making the status panel show the device as active after the user clicked stop. Fix: release the SDR device from the registry immediately inside the lock, clear process references, then terminate processes in a background thread so the HTTP response returns instantly. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -7,15 +7,15 @@ import os
|
||||
import sys
|
||||
|
||||
# Application version
|
||||
VERSION = "2.26.9"
|
||||
VERSION = "2.26.10"
|
||||
|
||||
# Changelog - latest release notes (shown on welcome screen)
|
||||
CHANGELOG = [
|
||||
{
|
||||
"version": "2.26.9",
|
||||
"version": "2.26.10",
|
||||
"date": "March 2026",
|
||||
"highlights": [
|
||||
"ADS-B bias-t fallback via rtl_biast for Blog V4 when dump1090 lacks native support",
|
||||
"Fix APRS stop timeout and inverted SDR device status",
|
||||
]
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user