Skip to content

Commit

Permalink
Fix for calling wrong base constructor of StashboxServiceDescriptor
Browse files Browse the repository at this point in the history
  • Loading branch information
z4kn4fein committed Apr 10, 2024
1 parent 5b15c22 commit 054c4c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
environment:
build_version: 5.5.2
build_version: 5.5.3

version: $(build_version)-{build}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ internal class StashboxServiceDescriptor : ServiceDescriptor

public Action<IStashboxContainer> ConfigurationAction { get; }

public StashboxServiceDescriptor(Action<IStashboxContainer> configurationAction) : base(DescriptorType, DescriptorType)
public StashboxServiceDescriptor(Action<IStashboxContainer> configurationAction) : base(DescriptorType, DescriptorType, ServiceLifetime.Transient)
{
ConfigurationAction = configurationAction;
}
Expand Down

0 comments on commit 054c4c2

Please sign in to comment.