Skip to content

Commit 4f930ef

Browse files
authored
fix: bug introduced in parseablehq#1136
Signed-off-by: Devdutt Shenoi <[email protected]>
1 parent 68e12b2 commit 4f930ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
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)