We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fad6b4b commit e93e099Copy full SHA for e93e099
src/handlers/http/ingest.rs
@@ -204,8 +204,10 @@ pub async fn create_stream_if_not_exists(
204
// For distributed deployments, if the stream not found in memory map,
205
//check if it exists in the storage
206
//create stream and schema from storage
207
- if CONFIG.parseable.mode != Mode::All {
208
- 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?
209
+ {
210
+ return Ok(stream_exists);
211
}
212
213
super::logstream::create_stream(
0 commit comments