Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/gateways/yarp/Yarp.Gateway/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
// TRACES AND LOGS OF THE GATEWAY
builder.Services.AddOpenTelemetry()
.WithMetrics(builder => builder.AddPrometheusExporter())
.WithTracing(t =>
.WithTracing(yarp =>
{
// Listen to the YARP tracing activities
t.AddSource("Yarp.ReverseProxy");
yarp.AddSource("Yarp.ReverseProxy");
});

// SWAGGER
Expand Down
2 changes: 1 addition & 1 deletion src/services/catalog/Catalog.Infrastructure/Extensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public static void AddCatalogInfrastructure(this WebApplicationBuilder builder,
});
});

// Automaticly register services.
// Automatically register services.
builder.Services.Scan(selector => selector
.FromAssemblies(
applicationAssembly,
Expand Down