This is an automated email from the ASF dual-hosted git repository.
mdedetrich pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-pekko-management.git
The following commit(s) were added to refs/heads/main by this push:
new a5084b3 Fix automatic application of empty tuple deprecation
a5084b3 is described below
commit a5084b377a814f20b9483565916eca64ce9c24dd
Author: Matthew de Detrich <[email protected]>
AuthorDate: Sun May 21 13:08:44 2023 +0200
Fix automatic application of empty tuple deprecation
---
.../src/main/scala/org/apache/pekko/cluster/bootstrap/DemoApp.scala | 2 +-
.../main/scala/org/apache/pekko/cluster/bootstrap/ClusterApp.scala | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git
a/integration-test/kubernetes-api/src/main/scala/org/apache/pekko/cluster/bootstrap/DemoApp.scala
b/integration-test/kubernetes-api/src/main/scala/org/apache/pekko/cluster/bootstrap/DemoApp.scala
index c537789..6bed718 100644
---
a/integration-test/kubernetes-api/src/main/scala/org/apache/pekko/cluster/bootstrap/DemoApp.scala
+++
b/integration-test/kubernetes-api/src/main/scala/org/apache/pekko/cluster/bootstrap/DemoApp.scala
@@ -40,7 +40,7 @@ object DemoApp extends App {
ClusterBootstrap(system).start()
cluster.subscribe(
- system.actorOf(Props[ClusterWatcher]),
+ system.actorOf(Props[ClusterWatcher]()),
ClusterEvent.InitialStateAsEvents,
classOf[ClusterDomainEvent])
diff --git
a/integration-test/kubernetes-dns/src/main/scala/org/apache/pekko/cluster/bootstrap/ClusterApp.scala
b/integration-test/kubernetes-dns/src/main/scala/org/apache/pekko/cluster/bootstrap/ClusterApp.scala
index 7b40539..3a08ae2 100644
---
a/integration-test/kubernetes-dns/src/main/scala/org/apache/pekko/cluster/bootstrap/ClusterApp.scala
+++
b/integration-test/kubernetes-dns/src/main/scala/org/apache/pekko/cluster/bootstrap/ClusterApp.scala
@@ -37,11 +37,11 @@ object ClusterApp {
system.actorOf(
ClusterSingletonManager.props(
- Props[NoisySingleton],
+ Props[NoisySingleton](),
PoisonPill,
ClusterSingletonManagerSettings(system)))
Cluster(system).subscribe(
- system.actorOf(Props[ClusterWatcher]),
+ system.actorOf(Props[ClusterWatcher]()),
ClusterEvent.InitialStateAsEvents,
classOf[ClusterDomainEvent])
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]