Skip to content

Commit 82574c0

Browse files
author
Devdutt Shenoi
authored
fix: bug introduced in #1136 (#1151)
Signed-off-by: Devdutt Shenoi <[email protected]>
1 parent 02a89cd commit 82574c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/handlers/http/modal/query/querier_logstream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ pub async fn get_stats(
169169

170170
let ingestor_stats = if STREAM_INFO
171171
.stream_type(&stream_name)
172-
.is_ok_and(|t| t == StreamType::Internal)
172+
.is_ok_and(|t| t == StreamType::UserDefined)
173173
{
174174
Some(fetch_stats_from_ingestors(&stream_name).await?)
175175
} else {

0 commit comments

Comments
 (0)