From 0c3f6712b4fd0e86fbb30f4585d057b577011e59 Mon Sep 17 00:00:00 2001 From: grossmj Date: Sat, 22 Feb 2025 20:14:13 +1000 Subject: [PATCH] Fix auto idle-pc for IOS templates --- gns3server/api/routes/controller/computes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/api/routes/controller/computes.py b/gns3server/api/routes/controller/computes.py index ca86e912..7385026b 100644 --- a/gns3server/api/routes/controller/computes.py +++ b/gns3server/api/routes/controller/computes.py @@ -188,7 +188,7 @@ async def vmware_vms(compute_id: Union[str, UUID]) -> List[schemas.ComputeVMware @router.post("/{compute_id}/dynamips/auto_idlepc") -async def dynamips_autoidlepc(compute_id: Union[str, UUID], auto_idle_pc: schemas.AutoIdlePC) -> str: +async def dynamips_autoidlepc(compute_id: Union[str, UUID], auto_idle_pc: schemas.AutoIdlePC): """ Find a suitable Idle-PC value for a given IOS image. This may take a few minutes. """