Commit cbe86136 authored by Nick Craver's avatar Nick Craver

Tests: fix similar DNS issue for SocketFailureError

parent 2bea9532
using System.Threading;
using System;
using System.Threading;
using Xunit;
using Xunit.Abstractions;
......@@ -73,7 +74,7 @@ public void AuthenticationFailureError()
public void SocketFailureError()
{
var options = new ConfigurationOptions();
options.EndPoints.Add(".redis.cache.windows.net");
options.EndPoints.Add($"{Guid.NewGuid():N}.redis.cache.windows.net");
options.Ssl = true;
options.Password = "";
options.AbortOnConnectFail = false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment