From a939835ada1c798f21ef16037547ef8a696fc031 Mon Sep 17 00:00:00 2001 From: Luis Date: Wed, 29 Nov 2023 09:46:05 -0300 Subject: [PATCH] forward GrainOptions to context on Cluster --- cluster/cluster.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/cluster.go b/cluster/cluster.go index 6fef9bfd..3b835467 100644 --- a/cluster/cluster.go +++ b/cluster/cluster.go @@ -162,7 +162,7 @@ func (c *Cluster) Get(identity string, kind string) *actor.PID { } func (c *Cluster) Request(identity string, kind string, message interface{}, option ...GrainCallOption) (interface{}, error) { - return c.context.Request(identity, kind, message) + return c.context.Request(identity, kind, message, option...) } func (c *Cluster) GetClusterKind(kind string) *ActivatedKind {