Skip to content
This repository was archived by the owner on Jul 30, 2024. It is now read-only.

Commit 4c64bbd

Browse files
authored
Fix for missed argument type update (#399)
* Missed one constructor argument update with ValidatorStateService change. * Job name fix
1 parent 2bb06ee commit 4c64bbd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • src/Validation.PackageSigning.ProcessSignature

src/Validation.PackageSigning.ProcessSignature/Job.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ protected override void ConfigureAutofacServices(ContainerBuilder containerBuild
7474
containerBuilder
7575
.RegisterType<ValidatorStateService>()
7676
.WithParameter(
77-
(pi, ctx) => pi.ParameterType == typeof(Type),
78-
(pi, ctx) => typeof(PackageSigningValidator))
77+
(pi, ctx) => pi.ParameterType == typeof(string),
78+
(pi, ctx) => ValidatorName.PackageSigning)
7979
.As<IValidatorStateService>();
8080

8181
containerBuilder

0 commit comments

Comments
 (0)