You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/actors/actors.go
+18-47Lines changed: 18 additions & 47 deletions
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,7 @@ import (
53
53
"github.com/dapr/dapr/pkg/retry"
54
54
"github.com/dapr/dapr/pkg/runtime/compstore"
55
55
"github.com/dapr/dapr/pkg/security"
56
+
eventqueue "github.com/dapr/kit/events/queue"
56
57
"github.com/dapr/kit/logger"
57
58
"github.com/dapr/kit/ptr"
58
59
)
@@ -63,6 +64,9 @@ const (
63
64
64
65
errStateStoreNotFound="actors: state store does not exist or incorrectly configured"
65
66
errStateStoreNotConfigured=`actors: state store does not exist or incorrectly configured. Have you set the property '{"name": "actorStateStore", "value": "true"}' in your state store component file?`
67
+
68
+
// If an idle actor is getting deactivated, but it's still busy, will be re-enqueued with its idle timeout increased by this duration.
0 commit comments