ActorRuntime.set_actor_config(
ActorRuntimeConfig(
actor_idle_timeout=datetime.timedelta(seconds=600),
actor_scan_interval=datetime.timedelta(seconds=30),
drain_ongoing_call_timeout=datetime.timedelta(seconds=1),
drain_rebalanced_actors=True,
)
)
but actor never deactivated, I can't seem to find actor_idle_timeout config in the source code and is the config working, or how shall I debug the cause?