Skip to content

Commit

Permalink
Fix expect messages
Browse files Browse the repository at this point in the history
  • Loading branch information
guilload committed Jan 22, 2024
1 parent af9aeef commit 8b7d723
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quickwit/quickwit-metastore/src/metastore_resolver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ impl MetastoreResolver {
}
builder
.build()
.expect("Metastore factory and config backends should match.")
.expect("metastore factory and config backends should match")
}
}

Expand All @@ -162,7 +162,7 @@ impl MetastoreResolverBuilder {
for (metastore_factory, metastore_config) in self.per_protocol_factories.values() {
ensure!(
metastore_factory.backend() == metastore_config.backend(),
"Metastore factory and config backends do not match: {:?} vs. {:?}",
"metastore factory and config backends do not match: {:?} vs. {:?}",
metastore_factory.backend(),
metastore_config.backend(),
);
Expand Down

0 comments on commit 8b7d723

Please sign in to comment.