We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24a862b commit c06f3efCopy full SHA for c06f3ef
1 file changed
src/DistributedLock.Postgres/PostgresDistributedLock.cs
@@ -83,7 +83,7 @@ internal static IDbDistributedLock CreateInternalLock(PostgresAdvisoryLockKey ke
83
{
84
if (dbDataSource == null) { throw new ArgumentNullException(nameof(dbDataSource)); }
85
86
- // Multiplexing is currently incompatible with DbDataSource, so default it to false
+ // Multiplexing is currently incompatible with DbDataSource (see #238), so default it to false
87
var originalOptions = options;
88
options = o => { o.UseMultiplexing(false); originalOptions?.Invoke(o); };
89
0 commit comments