diff --git a/nexus/src/external_api/http_entrypoints.rs b/nexus/src/external_api/http_entrypoints.rs index 3435a399d14..a0e8c806e05 100644 --- a/nexus/src/external_api/http_entrypoints.rs +++ b/nexus/src/external_api/http_entrypoints.rs @@ -1077,7 +1077,11 @@ async fn ip_pools_get( .into_iter() .map(IpPool::from) .collect(); - Ok(HttpResponseOk(ScanByNameOrId::results_page(&query, pools)?)) + Ok(HttpResponseOk(ScanByNameOrId::results_page( + &query, + pools, + &marker_for_name_or_id, + )?)) }; apictx.external_latencies.instrument_dropshot_handler(&rqctx, handler).await }