Skip to content

Commit 8990c1c

Browse files
committed
TD-6342: Corrected cache key prefix in OpenAPI
1 parent cd770b0 commit 8990c1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

OpenAPI/LearningHub.Nhs.OpenApi/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ public void ConfigureServices(IServiceCollection services)
173173
services.AddDistributedCache(option =>
174174
{
175175
option.RedisConnectionString = this.Configuration.GetConnectionString("LearningHubRedis");
176-
option.KeyPrefix = envPrefix;
176+
option.KeyPrefix = $"{envPrefix}_WebUI";
177177
option.DefaultExpiryInMinutes = 60;
178178
});
179179

0 commit comments

Comments
 (0)