Skip to content

Commit

Permalink
Remove Aspire workaround for local Redis (#4244)
Browse files Browse the repository at this point in the history
  • Loading branch information
premun authored Dec 13, 2024
1 parent 157bbdc commit 3e003ab
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@

var builder = DistributedApplication.CreateBuilder(args);

var redisCache = builder.AddRedis("redis", port: 55689);
var redisCache = builder
.AddRedis("redis", port: 55689);

var queues = builder.AddAzureStorage("storage")
.RunAsEmulator(emulator => emulator.WithImageTag("3.31.0")) // Workaround for https://github.com/dotnet/aspire/issues/5078
.RunAsEmulator()
.AddQueues("queues");

builder.AddProject<Projects.ProductConstructionService_Api>("productConstructionServiceApi")
Expand Down

0 comments on commit 3e003ab

Please sign in to comment.