Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iambriccardo committed Jun 4, 2024
1 parent 2415058 commit 20c024c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion relay-config/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2393,8 +2393,8 @@ impl Config {
max_project_key_bucket_bytes,
initial_delay: 30,
debounce_delay: 10,
flush_batching: FlushBatching::Project,
flush_partitions: None,
flush_batching: FlushBatching::Project,
}
}

Expand Down
4 changes: 2 additions & 2 deletions relay-metrics/src/aggregatorservice.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ impl Default for AggregatorServiceConfig {
max_project_key_bucket_bytes: None,
max_flush_bytes: 5_000_000, // 5 MB
flush_partitions: None,
flush_batching: FlushBatching::default(),
flush_batching: FlushBatching::Project,
}
}
}
Expand All @@ -145,8 +145,8 @@ impl From<&AggregatorServiceConfig> for AggregatorConfig {
max_tag_key_length: value.max_tag_key_length,
max_tag_value_length: value.max_tag_value_length,
max_project_key_bucket_bytes: value.max_project_key_bucket_bytes,
flush_batching: value.flush_batching,
flush_partitions: value.flush_partitions,
flush_batching: value.flush_batching,
}
}
}
Expand Down

0 comments on commit 20c024c

Please sign in to comment.