feat: increase api limit
This commit is contained in:
parent
7d0e1c4674
commit
9b75fbef43
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ async fn api_status_service(
|
||||||
Path(service): axum::extract::Path<String>,
|
Path(service): axum::extract::Path<String>,
|
||||||
Query(q): Query<ServiceStatusQuery>,
|
Query(q): Query<ServiceStatusQuery>,
|
||||||
) -> ApiResult<Vec<(i64, Option<i64>)>> {
|
) -> ApiResult<Vec<(i64, Option<i64>)>> {
|
||||||
let limit = q.limit.unwrap_or(50).min(250);
|
let limit = q.limit.unwrap_or(50).min(300);
|
||||||
let sid = db.sid(&service, false).await?;
|
let sid = db.sid(&service, false).await?;
|
||||||
Ok(Json(db.get(sid, limit).await?))
|
Ok(Json(db.get(sid, limit).await?))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue