Skip to content

Commit 2af2970

Browse files
authored
ActivationData: get IGrainActivator from shared components consistently (#9063)
1 parent e19a176 commit 2af2970

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Orleans.Runtime/Catalog/ActivationData.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ public async ValueTask DisposeAsync()
722722

723723
try
724724
{
725-
var activator = GetComponent<IGrainActivator>();
725+
var activator = _shared.GetComponent<IGrainActivator>();
726726
if (activator != null)
727727
{
728728
await activator.DisposeInstance(this, GrainInstance);

0 commit comments

Comments
 (0)