Skip to content

Commit 553d949

Browse files
nits
1 parent 6bc59d2 commit 553d949

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

consensus/src/marshal/core/actor.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -177,11 +177,7 @@ where
177177
)
178178
.await;
179179

180-
let stream = Stream::new(
181-
context.child("application_metadata"),
182-
&config.partition_prefix,
183-
)
184-
.await;
180+
let stream = Stream::new(context.child("stream"), &config.partition_prefix).await;
185181
let last_processed_height = stream.processed_height().unwrap_or_else(Height::zero);
186182

187183
// Genesis is a local anchor. A floor finalization is verified and

consensus/src/marshal/core/stream.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ impl<E: Context> Stream<E> {
5353
let metadata = Metadata::init(
5454
context,
5555
metadata::Config {
56+
// The application metadata name is retained for legacy support.
5657
partition: format!("{partition_prefix}-application-metadata"),
5758
codec_config: (),
5859
},

0 commit comments

Comments
 (0)