[backend/database] Disable multiplexing by default

This commit is contained in:
Laura Hausmann 2024-06-10 19:35:42 +02:00
parent 3467fe952c
commit 173b01fbf3
No known key found for this signature in database
GPG key ID: D044E84C5BE01605
2 changed files with 2 additions and 2 deletions

View file

@ -93,7 +93,7 @@ public sealed class Config
[Required] public string Username { get; init; } = null!; [Required] public string Username { get; init; } = null!;
public string? Password { get; init; } public string? Password { get; init; }
[Range(1, 1000)] public int MaxConnections { get; init; } = 100; [Range(1, 1000)] public int MaxConnections { get; init; } = 100;
public bool Multiplexing { get; init; } = true; public bool Multiplexing { get; init; } = false;
} }
public sealed class StorageSection public sealed class StorageSection

View file

@ -93,7 +93,7 @@ Password = iceshrimp
MaxConnections = 100 MaxConnections = 100
;; Whether to enable connection multiplexing, which allows for more efficient use of the connection pool. ;; Whether to enable connection multiplexing, which allows for more efficient use of the connection pool.
Multiplexing = true Multiplexing = false
[Storage] [Storage]
;; Where to store media attachments ;; Where to store media attachments