From 09f5c8b812c7e41b65fa43d50d1b1091cefe61ba Mon Sep 17 00:00:00 2001 From: Simon Novak Date: Sat, 1 Jun 2024 19:45:31 +0200 Subject: [PATCH] chore(#1): remove temporarily temporal server in aspire --- src/Aspire/AppHost/Program.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/Aspire/AppHost/Program.cs b/src/Aspire/AppHost/Program.cs index 5b8ab52..12d9584 100644 --- a/src/Aspire/AppHost/Program.cs +++ b/src/Aspire/AppHost/Program.cs @@ -5,15 +5,14 @@ var builder = DistributedApplication.CreateBuilder(args); +/* var temporal = await builder .AddTemporalServerContainer("temporal", temporal => temporal .WithLogFormat(LogFormat.Pretty) .WithLogLevel(LogLevel.Debug) - .WithNamespace("test")); + .WithNamespace("test"));*/ builder - .AddProject("worker") - .WithReference(temporal) - .WaitFor(temporal); + .AddProject("worker"); await builder.Build().RunAsync();