[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!;
|
[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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue