You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by al...@apache.org on 2017/11/22 15:22:57 UTC

flink git commit: [hotfix] Make aws docs version agnostic

Repository: flink
Updated Branches:
  refs/heads/master 28ee3c090 -> 775459d1a


[hotfix] Make aws docs version agnostic


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/775459d1
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/775459d1
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/775459d1

Branch: refs/heads/master
Commit: 775459d1ab130380526d44a7d5557c7fe3d2df62
Parents: 28ee3c0
Author: Aljoscha Krettek <al...@gmail.com>
Authored: Wed Nov 22 16:22:28 2017 +0100
Committer: Aljoscha Krettek <al...@gmail.com>
Committed: Wed Nov 22 16:22:28 2017 +0100

----------------------------------------------------------------------
 docs/ops/deployment/aws.md | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/775459d1/docs/ops/deployment/aws.md
----------------------------------------------------------------------
diff --git a/docs/ops/deployment/aws.md b/docs/ops/deployment/aws.md
index b5ae1e9..d9d2647 100644
--- a/docs/ops/deployment/aws.md
+++ b/docs/ops/deployment/aws.md
@@ -100,8 +100,9 @@ implementation. Both ways are described below.
 
 To use either `flink-s3-fs-hadoop` or `flink-s3-fs-presto`, copy the respective JAR file from the
 `opt` directory to the `lib` directory of your Flink distribution before starting Flink, e.g.
+
 ```
-cp ./opt/flink-s3-fs-presto-1.4-SNAPSHOT.jar ./lib/
+cp ./opt/flink-s3-fs-presto-{{ site.version }}.jar ./lib/
 ```
 
 #### Configure Access Credentials
@@ -195,7 +196,7 @@ the path of the Hadoop configuration directory, for example
 fs.hdfs.hadoopconf: /path/to/etc/hadoop
 ```
 
-This registers `/path/to/etc/hadoop` as Hadoop's configuration directory with Flink. Flink will look for the `core-site.xml` and `hdfs-site.xml` files in the specified directory.  
+This registers `/path/to/etc/hadoop` as Hadoop's configuration directory with Flink. Flink will look for the `core-site.xml` and `hdfs-site.xml` files in the specified directory.
 
 {% top %}