feat(backend): add option to disable postgres connection pooling
This commit is contained in:
parent
8054d68f79
commit
2323810b06
3 changed files with 4 additions and 0 deletions
|
@ -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; }
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue