Skip to content

Commit 6eb4663

Browse files
committed
refactored
1 parent ac8bf91 commit 6eb4663

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/Ordering/Ordering.Application/PipelineBehaviours/ValidationBehaviour.cs

+1-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ public Task<TResponse> Handle(TRequest request, CancellationToken cancellationTo
2424
.Select(x => x.Validate(context))
2525
.SelectMany(x => x.Errors)
2626
.Where(x => x != null)
27-
.ToList();
28-
29-
// TODO: add context to which command/query is throwing the exception and its origination
27+
.ToList();
3028

3129
if (failures.Any())
3230
{

0 commit comments

Comments
 (0)