Skip to content

Commit 3de52f5

Browse files
authored
Use ConfigureAwait(false) on ConnectionMultiplexerFactory (#39865)
1 parent b0596e5 commit 3de52f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Caching/StackExchangeRedis/src/RedisCache.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ private void Connect()
261261
}
262262
else
263263
{
264-
_connection = await _options.ConnectionMultiplexerFactory();
264+
_connection = await _options.ConnectionMultiplexerFactory().ConfigureAwait(false);
265265
}
266266

267267
PrepareConnection();

0 commit comments

Comments
 (0)