Enable detailed errors for redis tests (#1962)
This commit is contained in:
parent
ee6e8c15ce
commit
c9ab30e150
|
|
@ -11,7 +11,10 @@ namespace Microsoft.AspNetCore.SignalR.Redis.Tests
|
|||
{
|
||||
public void ConfigureServices(IServiceCollection services)
|
||||
{
|
||||
services.AddSignalR()
|
||||
services.AddSignalR(options =>
|
||||
{
|
||||
options.EnableDetailedErrors = true;
|
||||
})
|
||||
.AddMessagePackProtocol()
|
||||
.AddRedis(options =>
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue