[backend/database] Disable multiplexing by default
This commit is contained in:
parent
3467fe952c
commit
173b01fbf3
2 changed files with 2 additions and 2 deletions
|
@ -93,7 +93,7 @@ public sealed class Config
|
|||
[Required] public string Username { get; init; } = null!;
|
||||
public string? Password { get; init; }
|
||||
[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
|
||||
|
|
|
@ -93,7 +93,7 @@ Password = iceshrimp
|
|||
MaxConnections = 100
|
||||
|
||||
;; Whether to enable connection multiplexing, which allows for more efficient use of the connection pool.
|
||||
Multiplexing = true
|
||||
Multiplexing = false
|
||||
|
||||
[Storage]
|
||||
;; Where to store media attachments
|
||||
|
|
Loading…
Add table
Reference in a new issue