Skip to content

Commit 0647711

Browse files
committed
legacy configurators
1 parent fd03144 commit 0647711

4 files changed

Lines changed: 279 additions & 190 deletions

File tree

libsql-server/src/http/admin/stats.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,10 +140,12 @@ pub(super) async fn handle_stats<C>(
140140
State(app_state): State<Arc<AppState<C>>>,
141141
Path(namespace): Path<String>,
142142
) -> crate::Result<Json<StatsResponse>> {
143+
dbg!();
143144
let stats = app_state
144145
.namespaces
145146
.stats(NamespaceName::from_string(namespace)?)
146147
.await?;
148+
dbg!();
147149
let resp: StatsResponse = stats.as_ref().into();
148150

149151
Ok(Json(resp))

0 commit comments

Comments
 (0)