Skip to content

Commit

Permalink
console: Small fix (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
MortenSlingsby authored Aug 29, 2024
2 parents 2d8d8a6 + cd41010 commit 8d6637a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions modules/redpanda-console.nix
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,9 @@ in
];

services.redpanda-console.settings = {
kafka.brokers = lib.mkDefault (concatStringsSep ","
(map (x: x.address + ":" + toString x.port) cfg.kafkaBrokers));
kafka.brokers = lib.mkDefault (
(map (x: x.address + ":" + toString x.port) cfg.kafkaBrokers)
);
server.listenPort = lib.mkDefault cfg.port;
};

Expand Down

0 comments on commit 8d6637a

Please sign in to comment.