Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/handlers/http/ingest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,10 @@ pub async fn create_stream_if_not_exists(
// For distributed deployments, if the stream not found in memory map,
//check if it exists in the storage
//create stream and schema from storage
if CONFIG.parseable.mode != Mode::All {
return Ok(create_stream_and_schema_from_storage(stream_name).await?);
if CONFIG.parseable.mode != Mode::All
&& create_stream_and_schema_from_storage(stream_name).await?
{
return Ok(stream_exists);
}

super::logstream::create_stream(
Expand Down
Loading