Commit 38c7e778 authored by Marc Gravell's avatar Marc Gravell

Clarify redis-doc license is now GREEN; redis-labs - my PFX no longer requires a password

parent 028ab585
...@@ -28,10 +28,12 @@ The Redis project (http://redis.io/) is independent of this client library, and ...@@ -28,10 +28,12 @@ The Redis project (http://redis.io/) is independent of this client library, and
is licensed separately under the three clause BSD license. The full license is licensed separately under the three clause BSD license. The full license
information can be viewed here: http://redis.io/topics/license information can be viewed here: http://redis.io/topics/license
This tool makes use of the "redis doc" library from http://redis.io/documentation This tool makes use of the "redis-doc" library from http://redis.io/documentation
in the intellisense comments; the license for this library is under discussion in the intellisense commentsm which is licensed under the
at time of writing; if this concludes such that this usage is inappropriate, Creative Commons Attribution-ShareAlike 4.0 International license; full
the intellisense comments will be rewriteen. details are available here:
https://github.com/antirez/redis-doc/blob/master/COPYRIGHT
and are freely both shared and adapted.
The development solution uses the Redis-64 package from nuget The development solution uses the Redis-64 package from nuget
(https://www.nuget.org/packages/Redis-64) by Microsoft Open Technologies, inc. (https://www.nuget.org/packages/Redis-64) by Microsoft Open Technologies, inc.
......
...@@ -148,7 +148,7 @@ public void RedisLabsSSL() ...@@ -148,7 +148,7 @@ public void RedisLabsSSL()
#endif #endif
options.UseSsl = true; options.UseSsl = true;
options.CertificateSelection += delegate { options.CertificateSelection += delegate {
return new X509Certificate2(pfxPath, "pass"); return new X509Certificate2(pfxPath, "");
}; };
RedisKey key = Me(); RedisKey key = Me();
using(var conn = ConnectionMultiplexer.Connect(options)) using(var conn = ConnectionMultiplexer.Connect(options))
......
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