Skip to content

Commit

Permalink
chore(#1): remove temporarily temporal server in aspire
Browse files Browse the repository at this point in the history
  • Loading branch information
snovak7 committed Jun 1, 2024
1 parent 74e0d95 commit 09f5c8b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/Aspire/AppHost/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Projects.InfinityFlow_Temporal_Migrator_Tests_Worker>("worker")
.WithReference(temporal)
.WaitFor(temporal);
.AddProject<Projects.InfinityFlow_Temporal_Migrator_Tests_Worker>("worker");

await builder.Build().RunAsync();

0 comments on commit 09f5c8b

Please sign in to comment.