You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by GitBox <gi...@apache.org> on 2019/02/12 20:42:57 UTC

[GitHub] zentol commented on a change in pull request #7682: [FLINK-11583][configuration] Support deprecated and fallback keys at once

zentol commented on a change in pull request #7682: [FLINK-11583][configuration] Support deprecated and fallback keys at once
URL: https://github.com/apache/flink/pull/7682#discussion_r256138606
 
 

 ##########
 File path: flink-core/src/main/java/org/apache/flink/configuration/ConfigOption.java
 ##########
 @@ -134,10 +138,13 @@
 	 * @return A new config options, with the given deprecated keys.
 	 */
 	public ConfigOption<T> withDeprecatedKeys(String... deprecatedKeys) {
-		FallbackKey[] fallbackKeys = Arrays.stream(deprecatedKeys)
-			.map(FallbackKey::createDeprecatedKey)
+		final Stream<FallbackKey> newFallbackKeys = Arrays.stream(deprecatedKeys).map(FallbackKey::createFallbackKey);
 
 Review comment:
   I'll fix the method reference.
   
   The naming scheme is messed up generally in this context, both deprecated and fallback keys are stored as `FallbackKey` in a `fallbackKeys` field :/
   
   I think I'll rename this one to `newDeprecatedKey`, and the union of keys to `mergedAlternativeKeys` or something...

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services