Skip to content

Commit

Permalink
nixos/matrix-synapse: change rc_message_burst_count type to int
Browse files Browse the repository at this point in the history
  • Loading branch information
sumnerevans committed May 27, 2021
1 parent 849b42e commit 27f2410
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nixos/modules/services/misc/matrix-synapse.nix
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,8 @@ in
description = "Number of messages a client can send per second";
};
rc_message_burst_count = mkOption {
type = types.str;
default = "10.0";
type = types.int;
default = 10;
description = "Number of message a client can send before being throttled";
};
federation_rc_window_size = mkOption {
Expand Down

0 comments on commit 27f2410

Please sign in to comment.