From f98c2c28950170c75517f2eead4b67f0474ba451 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Sat, 11 Jun 2016 10:58:07 -0400 Subject: [PATCH] remove bad key --- src/AzureTableStorageCacheSample/Startup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AzureTableStorageCacheSample/Startup.cs b/src/AzureTableStorageCacheSample/Startup.cs index 9be4ef6..5adcc7e 100644 --- a/src/AzureTableStorageCacheSample/Startup.cs +++ b/src/AzureTableStorageCacheSample/Startup.cs @@ -29,7 +29,7 @@ namespace AzureTableStorageCacheSample // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { - services.AddAzureTableStorageCache("DefaultEndpointsProtocol=https;AccountName=tparnell;AccountKey=cEHdbvM6bljcIYOaODs16vRokLDvxujEn+JR/8MWgYE/9g4mw95n/jusTAdvhc/JrySfZGwaq/WIg9Bi/TeoOw==", "yodawg", "cachingforlyfe"); + services.AddAzureTableStorageCache("connectionstring", "table", "partitionKey"); // Add framework services. services.AddMvc(); }