[ 
https://issues.apache.org/jira/browse/FLINK-10436?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16654957#comment-16654957
 ] 

ASF GitHub Bot commented on FLINK-10436:
----------------------------------------

tillrohrmann commented on a change in pull request #6872: [FLINK-10436] Add 
ConfigOption#withFallbackKeys
URL: https://github.com/apache/flink/pull/6872#discussion_r226239305
 
 

 ##########
 File path: 
flink-core/src/main/java/org/apache/flink/configuration/FallbackKey.java
 ##########
 @@ -0,0 +1,66 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.flink.configuration;
+
+/**
+ * A key with FallbackKeys will fall back to the FallbackKeys if it itself is 
not configured.
+ */
+public class FallbackKey {
+
+       private final String key;
+
+       private final boolean isDeprecated;
+
+       public String getKey() {
+               return key;
+       }
+
+       public boolean isDeprecated() {
+               return isDeprecated;
+       }
+
+       FallbackKey(String key, boolean isDeprecated) {
 
 Review comment:
   maybe we could add static methods to create a `FallbackKey`:
   ```
   static FallbackKey createFallbackKey(String key) {
       return new FallbackKey(key, false);
   }
   
   static FallbackKey createDeprecatedKey(String key) {
       return new FallbackKey(key, true);
   }
   ```
   
   That way one does not need to remember what the boolean argument does.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Example config uses deprecated key jobmanager.rpc.address
> ---------------------------------------------------------
>
>                 Key: FLINK-10436
>                 URL: https://issues.apache.org/jira/browse/FLINK-10436
>             Project: Flink
>          Issue Type: Sub-task
>          Components: Startup Shell Scripts
>    Affects Versions: 1.7.0
>            Reporter: Ufuk Celebi
>            Assignee: TisonKun
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 1.7.0
>
>
> The example {{flink-conf.yaml}} shipped as part of the Flink distribution 
> (https://github.com/apache/flink/blob/master/flink-dist/src/main/resources/flink-conf.yaml)
>  has the following entry:
> {code}
> jobmanager.rpc.address: localhost
> {code}
> When using this key, the following deprecation warning is logged.
> {code}
> 2018-09-26 12:01:46,608 WARN  org.apache.flink.configuration.Configuration    
>               - Config uses deprecated configuration key 
> 'jobmanager.rpc.address' instead of proper key 'rest.address'
> {code}
> The example config should not use deprecated config options.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to