You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by sa...@apache.org on 2022/05/09 21:36:01 UTC

[incubator-heron] 06/07: [Config] ConfigReader test switched to using Kubernetes.

This is an automated email from the ASF dual-hosted git repository.

saadurrahman pushed a commit to branch saadurrahman/3829-Deprecate-Apache-Aurora-dev
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git

commit c2efb67f8b1f476d0bc2c13294c552601c751147
Author: Saad Ur Rahman <sa...@apache.org>
AuthorDate: Mon May 9 17:31:53 2022 -0400

    [Config] ConfigReader test switched to using Kubernetes.
---
 .../tests/java/org/apache/heron/common/config/ConfigReaderTest.java     | 2 +-
 heron/common/tests/resources/defaults.yaml                              | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/heron/common/tests/java/org/apache/heron/common/config/ConfigReaderTest.java b/heron/common/tests/java/org/apache/heron/common/config/ConfigReaderTest.java
index ad15f07edb0..b2cdd798792 100644
--- a/heron/common/tests/java/org/apache/heron/common/config/ConfigReaderTest.java
+++ b/heron/common/tests/java/org/apache/heron/common/config/ConfigReaderTest.java
@@ -43,7 +43,7 @@ public class ConfigReaderTest {
   private void testProperty(Map<String, Object> props) {
     Assert.assertEquals("role", props.get(ROLE_KEY));
     Assert.assertEquals("environ", props.get(ENVIRON_KEY));
-    Assert.assertEquals("org.apache.heron.scheduler.aurora.AuroraLauncher",
+    Assert.assertEquals("org.apache.heron.scheduler.kubernetes.KubernetesLauncher",
         props.get(LAUNCHER_CLASS_KEY));
     Assert.assertNull(props.get(USER_KEY));
   }
diff --git a/heron/common/tests/resources/defaults.yaml b/heron/common/tests/resources/defaults.yaml
index e07336c1e96..d365784ac12 100644
--- a/heron/common/tests/resources/defaults.yaml
+++ b/heron/common/tests/resources/defaults.yaml
@@ -17,4 +17,4 @@
 
 role: role
 environ: environ
-heron.launcher.class: org.apache.heron.scheduler.aurora.AuroraLauncher
+heron.launcher.class: org.apache.heron.scheduler.kubernetes.KubernetesLauncher