Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Mar 1, 2024
1 parent e7a6ae8 commit 975a530
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/db_utils/cli/copy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@ pub fn run(common: &common::cli::Args, args: &Args) -> Result<(), anyhow::Error>

// Perform the main work of copying over data.
tracing::info!("Copying data");
for cf_name in cf_names {
if args.skip_cfs.contains(&cf_name) {
for cf_name in &cf_names {
if args.skip_cfs.contains(cf_name) {
tracing::info!(" skipping column family contents {}", cf_name);
continue;
}
Expand Down

0 comments on commit 975a530

Please sign in to comment.