Skip to content

Commit 000d75b

Browse files
authored
DnsExt: Resolve ManagerClass Type from IDnsProvider (#7727)
1 parent c10cfc1 commit 000d75b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/Akka/IO/Dns.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ public override IActorRef Manager
275275
{
276276
get
277277
{
278-
return _manager = _manager ?? _system.SystemActorOf(Props.Create(() => new SimpleDnsManager(this))
278+
return _manager = _manager ?? _system.SystemActorOf(Props.Create(Provider.ManagerClass, this)
279279
.WithDeploy(Deploy.Local)
280280
.WithDispatcher(Settings.Dispatcher));
281281
}

0 commit comments

Comments
 (0)