Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
niebayes committed Dec 26, 2023
1 parent 27bbf24 commit 0d7fb7e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 9 deletions.
5 changes: 1 addition & 4 deletions src/cmd/src/standalone.rs
Original file line number Diff line number Diff line change
Expand Up @@ -524,10 +524,7 @@ mod tests {
enable_memory_catalog = true
[wal_meta]
provider = "raft_engine"
[wal_datanode]
[wal]
provider = "raft_engine"
dir = "/tmp/greptimedb/test/wal"
file_size = "1GB"
Expand Down
1 change: 0 additions & 1 deletion src/log-store/src/kafka/log_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ impl LogStore for KafkaLogStore {

// Builds a record from entries belong to a region and produces them to kafka server.
let region_ids = producers.keys().cloned().collect::<Vec<_>>();
debug!("Constructed producers for regions {:?}", region_ids);

let tasks = producers
.into_values()
Expand Down
4 changes: 0 additions & 4 deletions src/mito2/src/region/opener.rs
Original file line number Diff line number Diff line change
Expand Up @@ -226,10 +226,6 @@ impl RegionOpener {
) -> Result<Option<MitoRegion>> {
let region_options = self.options.as_ref().unwrap().clone();
let wal_options = region_options.wal_options.clone();
debug!(
"Try to open region {} with wal options {:?}",
self.region_id, wal_options
);

let region_manifest_options = self.manifest_options(config, &region_options)?;
let Some(manifest_manager) = RegionManifestManager::open(region_manifest_options).await?
Expand Down

0 comments on commit 0d7fb7e

Please sign in to comment.