feat(backend): add option to disable postgres connection pooling

This commit is contained in:
sam 2024-09-10 18:52:13 +02:00
parent 8054d68f79
commit 2323810b06
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
3 changed files with 4 additions and 0 deletions

View file

@ -36,6 +36,7 @@ public class Config
public class DatabaseConfig
{
public string Url { get; init; } = string.Empty;
public bool? EnablePooling { get; init; }
public int? Timeout { get; init; }
public int? MaxPoolSize { get; init; }
}