Skip to content

Commit b50d0ee

Browse files
Merge pull request #83 from wemogy/fix/health-check-name
fix: health check name
2 parents 778edd6 + 26f248c commit b50d0ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/Wemogy.CQRS/DependencyInjection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,6 @@ public static IHealthChecksBuilder AddDelayedProcessorCheck<TCommand>(this IHeal
333333
where TCommand : ICommandBase
334334
{
335335
return healthChecksBuilder.AddCheck<DelayedCommandProcessorHealthCheck<TCommand>>(
336-
$"{nameof(TCommand)}DelayedProcessorHealthCheck");
336+
$"{typeof(TCommand).Name}DelayedProcessorHealthCheck");
337337
}
338338
}

0 commit comments

Comments
 (0)