You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by sr...@apache.org on 2018/09/11 13:54:28 UTC

[flink] branch master updated: [hotfix][kubernetes] Correct exception typo

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

srichter pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 3dee499  [hotfix][kubernetes] Correct exception typo
3dee499 is described below

commit 3dee4995a1b6a3f3d61ef95598b8577f4b6221e1
Author: 陈梓立 <wa...@gmail.com>
AuthorDate: Mon Sep 10 17:49:51 2018 +0800

    [hotfix][kubernetes] Correct exception typo
    
    This closes #6677.
---
 .../flink/container/entrypoint/StandaloneJobClusterEntryPoint.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-container/src/main/java/org/apache/flink/container/entrypoint/StandaloneJobClusterEntryPoint.java b/flink-container/src/main/java/org/apache/flink/container/entrypoint/StandaloneJobClusterEntryPoint.java
index b60b078..0e40095 100644
--- a/flink-container/src/main/java/org/apache/flink/container/entrypoint/StandaloneJobClusterEntryPoint.java
+++ b/flink-container/src/main/java/org/apache/flink/container/entrypoint/StandaloneJobClusterEntryPoint.java
@@ -98,7 +98,7 @@ public final class StandaloneJobClusterEntryPoint extends JobClusterEntrypoint {
 			final Class<?> mainClass = getClass().getClassLoader().loadClass(jobClassName);
 			return new PackagedProgram(mainClass, programArguments);
 		} catch (ClassNotFoundException | ProgramInvocationException e) {
-			throw new FlinkException("Could not load the provied entrypoint class.", e);
+			throw new FlinkException("Could not load the provided entrypoint class.", e);
 		}
 	}