From 656bfe0762391ae489478e5f6e77fca044d98f0e Mon Sep 17 00:00:00 2001 From: bradygaster Date: Tue, 23 Sep 2014 13:57:35 -0700 Subject: [PATCH] added a region to hide a key --- 04-03-Redis-Backplane/ScalingWithRedis/Startup.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/04-03-Redis-Backplane/ScalingWithRedis/Startup.cs b/04-03-Redis-Backplane/ScalingWithRedis/Startup.cs index 733260d..2f41591 100644 --- a/04-03-Redis-Backplane/ScalingWithRedis/Startup.cs +++ b/04-03-Redis-Backplane/ScalingWithRedis/Startup.cs @@ -13,8 +13,10 @@ void SetupScaleOut() { GlobalHost.DependencyResolver.UseRedis("myredisbackplane.redis.cache.windows.net", 6379, + #region Hidden on purpose "8gUnFTrhXH8Lc4RI3PjHpfu51QHgVTMrSkogsqbZek8=", - "RedisBackplaneDemo"); + #endregion + "RedisBackplaneDemo"); } public void Configuration(IAppBuilder app)