Skip to content

Commit

Permalink
Changing min StackExchange.Redis version to 1.2.6, fixes #179
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaCo committed Nov 18, 2017
1 parent 1aeb55d commit b55f652
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<PackageTags>Caching;Cache;CacheManager;Distributed Cache;StackExchange Redis;Azure AppFabric;Memcached</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="StackExchange.Redis.StrongName" Version="1.2.1" />
<PackageReference Include="StackExchange.Redis.StrongName" Version="1.2.6" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CacheManager.Core\CacheManager.Core.csproj" />
Expand Down
7 changes: 3 additions & 4 deletions test/CacheManager.Config.Tests/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ internal class Program
{
public static void Main(string[] args)
{
var iterations = 10;
var iterations = 100;
try
{
var builder = new Core.ConfigurationBuilder("myCache");
Expand All @@ -24,7 +24,7 @@ public static void Main(string[] args)
f.AddConsole(LogLevel.Warning);
f.AddDebug(LogLevel.Debug);
});

builder
.WithRetryTimeout(500)
.WithMaxRetries(5);
Expand Down Expand Up @@ -54,7 +54,6 @@ public static void Main(string[] args)

//builder.WithRedisConfiguration("redis", "localhost:22121");


builder.WithBondCompactBinarySerializer();

#if !NETCOREAPP
Expand Down Expand Up @@ -106,4 +105,4 @@ public static void Main(string[] args)
Console.ReadKey();
}
}
}
}
2 changes: 1 addition & 1 deletion test/CacheManager.Config.Tests/Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -430,4 +430,4 @@ public static Item Generate()
SomeStrings = new List<string>() { "Something", "more", "or", "less" }
};
}
}
}

0 comments on commit b55f652

Please sign in to comment.