You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ma...@apache.org on 2022/03/30 20:08:01 UTC

[flink] branch master updated: [hotfix][runtime][tests] Modify spelling error in RestServerSSLAuthITCase.java

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

martijnvisser 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 c9b413e  [hotfix][runtime][tests] Modify spelling error in RestServerSSLAuthITCase.java
c9b413e is described below

commit c9b413edb31232fb740e819f77a11eb2e779be52
Author: longwang <27...@qq.com>
AuthorDate: Wed Mar 30 17:13:57 2022 +0800

    [hotfix][runtime][tests] Modify spelling error in RestServerSSLAuthITCase.java
---
 .../java/org/apache/flink/runtime/rest/RestServerSSLAuthITCase.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/flink-runtime/src/test/java/org/apache/flink/runtime/rest/RestServerSSLAuthITCase.java b/flink-runtime/src/test/java/org/apache/flink/runtime/rest/RestServerSSLAuthITCase.java
index 950e338..1b6fe80 100644
--- a/flink-runtime/src/test/java/org/apache/flink/runtime/rest/RestServerSSLAuthITCase.java
+++ b/flink-runtime/src/test/java/org/apache/flink/runtime/rest/RestServerSSLAuthITCase.java
@@ -69,9 +69,9 @@ public class RestServerSSLAuthITCase extends TestLogger {
     private final Configuration clientConfig;
     private final Configuration serverConfig;
 
-    public RestServerSSLAuthITCase(final Tuple2<Configuration, Configuration> clinetServerConfig) {
-        this.clientConfig = clinetServerConfig.f0;
-        this.serverConfig = clinetServerConfig.f1;
+    public RestServerSSLAuthITCase(final Tuple2<Configuration, Configuration> clientServerConfig) {
+        this.clientConfig = clientServerConfig.f0;
+        this.serverConfig = clientServerConfig.f1;
     }
 
     @Parameterized.Parameters