Hello,
my postgres database is behind a PgBouncer connection pooler with transaction pooling and it does not allow prepared statements, so its failing as the Distributed Lock postgres implementation uses prepared statement:
|
public override bool ShouldPrepareCommands => true; |
I was not able to find a way to disable it through configuration/parameters, do you have any recommendation on this case?
Thank you.