Skip to content

Commit

Permalink
Updates silo configuration in read me.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jem Winter authored and galvesribeiro committed Jan 19, 2023
1 parent 63a7209 commit db057b6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ Optional configuration to override the default implementation for both providers
```cs
.UseSignalR(cfg =>
{
cfg.ConfigureBuilder = (builder, config) =>
cfg.Configure((builder, config) =>
{
builder
.AddMemoryGrainStorage(config.PubSubProvider)
.AddMemoryGrainStorage(config.StorageProvider);
};
builder
.AddMemoryGrainStorage(config.PubSubProvider)
.AddMemoryGrainStorage(config.StorageProvider);
});
})
.RegisterHub<MyHub>()
```
Expand Down

0 comments on commit db057b6

Please sign in to comment.