Skip to content

Commit

Permalink
Merge pull request #24 from vintmd/fixlog
Browse files Browse the repository at this point in the history
remove user info config log
  • Loading branch information
wucheng authored May 9, 2024
2 parents acf5acb + c7692d4 commit 06dc86d
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion flink-cos-fs-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>flink-cos-fs</artifactId>
<groupId>com.qcloud.cos</groupId>
<version>1.10.0-0.2.2</version>
<version>1.10.0-0.2.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion flink-cos-fs-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>flink-cos-fs</artifactId>
<groupId>com.qcloud.cos</groupId>
<version>1.10.0-0.2.2</version>
<version>1.10.0-0.2.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion flink-cos-fs-hadoop/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>flink-cos-fs</artifactId>
<groupId>com.qcloud.cos</groupId>
<version>1.10.0-0.2.2</version>
<version>1.10.0-0.2.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,9 @@ protected org.apache.hadoop.conf.Configuration getHadoopConfiguration() {
String shadeValue = FLINK_SHADING_PREFIX + value;
conf.set(key, shadeValue);
}
LOG.info("Adding Flink config entry for {} as {} to Hadoop config", key, conf.get(key));
if (!key.startsWith("fs.cosn.userinfo")) {
LOG.info("Adding Flink config entry for {} as {} to Hadoop config", key, conf.get(key));
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion flink-fs-hadoop-shaded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>flink-cos-fs</artifactId>
<groupId>com.qcloud.cos</groupId>
<version>1.10.0-0.2.2</version>
<version>1.10.0-0.2.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<groupId>com.qcloud.cos</groupId>
<artifactId>flink-cos-fs</artifactId>
<version>1.10.0-0.2.2</version>
<version>1.10.0-0.2.3</version>
<name>Flink : FileSystems : COS FS</name>
<description>
This project aims to provide COS's implementation of the Flink file system interface,
Expand Down

0 comments on commit 06dc86d

Please sign in to comment.