Skip to content

Commit

Permalink
chore: minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
niebayes committed Dec 15, 2023
1 parent 1dc70d3 commit 1ef6e86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/standalone.example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ enable = true
# Available wal providers:
# - "RaftEngine" (default)
# - "Kafka"
provider = "RaftEngine"
provider = "raft-engine"

# WAL data directory
# dir = "/tmp/greptimedb/wal"
Expand Down
2 changes: 1 addition & 1 deletion src/mito2/src/wal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ fn try_build_wal_namespace<S: LogStore>(
wal_options: &HashMap<String, String>,
) -> Result<S::Namespace> {
store
.namespace(region_id.into(), &wal_options)
.namespace(region_id.into(), wal_options)
.map_err(BoxedError::new)
.with_context(|_| BuildWalNamespaceSnafu {
region_id,
Expand Down

0 comments on commit 1ef6e86

Please sign in to comment.