Commit 00e4f5f6 authored by Nick Craver's avatar Nick Craver

Tests: enable Sentinel

parent c055f320
...@@ -58,7 +58,7 @@ public class Config ...@@ -58,7 +58,7 @@ public class Config
public string RemoteServer { get; set; } = "127.0.0.1"; public string RemoteServer { get; set; } = "127.0.0.1";
public int RemotePort { get; set; } = 6379; public int RemotePort { get; set; } = 6379;
public string SentinelServer { get; set; } public string SentinelServer { get; set; } = "127.0.0.1";
public int SentinelPort { get; set; } = 26379; public int SentinelPort { get; set; } = 26379;
public string SentinelSeviceName { get; set; } = "mymaster"; public string SentinelSeviceName { get; set; } = "mymaster";
......
...@@ -101,7 +101,7 @@ public void SentinelSlavesTest() ...@@ -101,7 +101,7 @@ public void SentinelSlavesTest()
} }
} }
[Fact(Skip = "Isolated Test")] [Fact]
public void SentinelFailoverTest() public void SentinelFailoverTest()
{ {
Server.SentinelFailover(ServiceName); Server.SentinelFailover(ServiceName);
......
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