Skip to content

Commit

Permalink
fix: redundant parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
jose-sousa-8 authored and filipeesch committed Sep 15, 2023
1 parent cb9075c commit e400640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/KafkaFlow/Clusters/ClusterManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public ClusterManager(ILogHandler logHandler, ClusterConfiguration configuration
this.lazyAdminClientBuilder = new Lazy<AdminClientBuilder>(
() =>
{
var adminConfig = new AdminClientConfig()
var adminConfig = new AdminClientConfig
{
BootstrapServers = string.Join(",", configuration.Brokers),
};
Expand Down

0 comments on commit e400640

Please sign in to comment.