Skip to content

Commit

Permalink
Fix streaming config validator registration (#8876)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminpetit authored May 17, 2024
1 parent a602e92 commit 9e36fcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Orleans.Streaming/SiloPersistentStreamConfigurator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public SiloPersistentStreamConfigurator(string name, Action<Action<IServiceColle
this.ConfigureComponent((s,n) => s.GetRequiredKeyedService<IStreamProvider>(n) as IControllable);
this.ConfigureDelegate(services => services.AddSingleton(sp => PersistentStreamProvider.ParticipateIn<ISiloLifecycle>(sp, this.Name)));
this.ConfigureComponent(adapterFactory);
this.ConfigureComponent(PersistentStreamStorageConfigurationValidator.Create);
this.ConfigureDelegate(services => services.AddSingleton(sp => PersistentStreamStorageConfigurationValidator.Create(sp, this.Name)));
}
}
}

1 comment on commit 9e36fcd

@oising
Copy link
Contributor

@oising oising commented on 9e36fcd May 17, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ohh, this looks promising :)

Please sign in to comment.