diff --git a/docs/plugins/inventories/orleans-grains/README.md b/docs/plugins/inventories/orleans-grains/README.md index c72baf83..ff92953b 100644 --- a/docs/plugins/inventories/orleans-grains/README.md +++ b/docs/plugins/inventories/orleans-grains/README.md @@ -26,14 +26,7 @@ EShop product-inventory implementation of [Orleans Grains](https://docs.microsof .UseOrleans(c => { c.UseLocalhostClustering() // for test only - .AddMemoryGrainStorage(InventoryGrain.StorageProviderName) // for test only - .Configure(options => - { - options.ClusterId = "my-first-cluster"; - options.ServiceId = "MyEShopApp"; - }) - .ConfigureApplicationParts( - parts => parts.AddApplicationPart(typeof(InventoryGrain).Assembly).WithReferences()); + c.AddMemoryGrainStorage(InventoryGrain.StorageProviderName); // for test only }); ```