This is an automated email from the ASF dual-hosted git repository.
oleewere pushed a commit to branch s3-poc
in repository https://gitbox.apache.org/repos/asf/ambari-infra.git
The following commit(s) were added to refs/heads/s3-poc by this push:
new cb9e205 Renmae file system delegator
cb9e205 is described below
commit cb9e20500e47c99df4a36b25fd303a2fa081c00c
Author: Oliver Szabo <[email protected]>
AuthorDate: Mon Dec 24 13:13:10 2018 +0100
Renmae file system delegator
---
.../org/apache/hadoop/fs/s3n/{S3N.java => S3NativeFileSystem.java} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/ambari-infra-solr-plugin/src/main/java/org/apache/hadoop/fs/s3n/S3N.java
b/ambari-infra-solr-plugin/src/main/java/org/apache/hadoop/fs/s3n/S3NativeFileSystem.java
similarity index 88%
rename from
ambari-infra-solr-plugin/src/main/java/org/apache/hadoop/fs/s3n/S3N.java
rename to
ambari-infra-solr-plugin/src/main/java/org/apache/hadoop/fs/s3n/S3NativeFileSystem.java
index ede6dbd..7354a72 100644
--- a/ambari-infra-solr-plugin/src/main/java/org/apache/hadoop/fs/s3n/S3N.java
+++
b/ambari-infra-solr-plugin/src/main/java/org/apache/hadoop/fs/s3n/S3NativeFileSystem.java
@@ -26,9 +26,9 @@ import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
-public class S3N extends DelegateToFileSystem {
+public class S3NativeFileSystem extends DelegateToFileSystem {
- public S3N(URI theUri, Configuration conf) throws IOException,
URISyntaxException {
+ public S3NativeFileSystem(URI theUri, Configuration conf) throws
IOException, URISyntaxException {
super(theUri, new NativeS3FileSystem(), conf, "s3n", false);
}