Skip to content

Commit

Permalink
ActivationData: get IGrainActivator from shared components consistent…
Browse files Browse the repository at this point in the history
…ly (#9063)
  • Loading branch information
ReubenBond authored Jul 11, 2024
1 parent e19a176 commit 2af2970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Orleans.Runtime/Catalog/ActivationData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ public async ValueTask DisposeAsync()

try
{
var activator = GetComponent<IGrainActivator>();
var activator = _shared.GetComponent<IGrainActivator>();
if (activator != null)
{
await activator.DisposeInstance(this, GrainInstance);
Expand Down

0 comments on commit 2af2970

Please sign in to comment.