fix: remove stale reschedule call from scan config after settings endpoint split

This commit is contained in:
Pouzor
2026-03-31 00:01:31 +02:00
parent e7fc091701
commit e9152df17a
2 changed files with 0 additions and 22 deletions
-2
View File
@@ -8,7 +8,6 @@ from sqlalchemy.ext.asyncio import AsyncSession
from app.api.deps import get_current_user from app.api.deps import get_current_user
from app.core.config import settings from app.core.config import settings
from app.core.scheduler import reschedule_status_checks
from app.db.database import AsyncSessionLocal, get_db from app.db.database import AsyncSessionLocal, get_db
from app.db.models import Node, PendingDevice, ScanRun from app.db.models import Node, PendingDevice, ScanRun
from app.schemas.nodes import NodeCreate from app.schemas.nodes import NodeCreate
@@ -111,7 +110,6 @@ async def update_scan_config(payload: ScanConfig, _: str = Depends(get_current_u
try: try:
settings.scanner_ranges = payload.ranges settings.scanner_ranges = payload.ranges
settings.save_overrides() settings.save_overrides()
reschedule_status_checks(payload.interval_seconds)
return payload return payload
except Exception as exc: except Exception as exc:
raise HTTPException(status_code=500, detail=str(exc)) from exc raise HTTPException(status_code=500, detail=str(exc)) from exc
-20
View File
@@ -156,26 +156,6 @@ async def test_ignore_device(client: AsyncClient, headers, pending_device):
assert hidden_res.json() == [] assert hidden_res.json() == []
# --- Scan config ---
@pytest.mark.asyncio
async def test_update_scan_config_reschedules_interval(client: AsyncClient, headers):
"""Saving a new interval must reschedule the running APScheduler job immediately."""
with (
patch("app.api.routes.scan.settings") as mock_settings,
patch("app.api.routes.scan.reschedule_status_checks") as mock_reschedule,
):
mock_settings.scanner_ranges = []
mock_settings.save_overrides = lambda: None
res = await client.post(
"/api/v1/scan/config",
json={"ranges": ["192.168.1.0/24"], "interval_seconds": 30},
headers=headers,
)
assert res.status_code == 200
mock_reschedule.assert_called_once_with(30)
# --- Scan runs --- # --- Scan runs ---
@pytest.mark.asyncio @pytest.mark.asyncio