-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
24cc478
commit 0fc264d
Showing
2 changed files
with
10 additions
and
13 deletions.
There are no files selected for viewing
14 changes: 7 additions & 7 deletions
14
src/Paralax.Tracing.Jaeger.RabbitMQ/src/Paralax.Tracing.Jaeger.RabbitMQ/Extensions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
using Paralax.MessageBrokers.RabbitMQ; | ||
using Paralax.Tracing.Jaeger.RabbitMQ.Plugins; | ||
|
||
namespace Paralax.Tracing.Jaeger.RabbitMQ. | ||
namespace Paralax.Tracing.Jaeger.RabbitMQ | ||
{ | ||
|
||
public static class Extensions | ||
{ | ||
public static IRabbitMqPluginsRegistry AddJaegerRabbitMqPlugin(this IRabbitMqPluginsRegistry registry) | ||
public static class Extensions | ||
{ | ||
registry.Add<JaegerPlugin>(); | ||
return registry; | ||
public static IRabbitMqPluginsRegistry AddJaegerRabbitMqPlugin(this IRabbitMqPluginsRegistry registry) | ||
{ | ||
registry.Add<JaegerPlugin>(); | ||
return registry; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters