Github user zentol commented on a diff in the pull request:
https://github.com/apache/flink/pull/5459#discussion_r167606303
--- Diff:
flink-core/src/main/java/org/apache/flink/configuration/CoreOptions.java ---
@@ -127,7 +130,30 @@
*/
public static final ConfigOption<String> DEFAULT_FILESYSTEM_SCHEME =
ConfigOptions
.key("fs.default-scheme")
- .noDefaultValue();
+ .noDefaultValue()
+ .withDescription("The default filesystem scheme, used
for paths that do not declare a scheme explicitly.");
--- End diff --
IMO the missing text isn't really needed, but I'll add it back to keep this
PR as a straight port of the existing docs and merge it afterwards.
---