change static field to instance field (#2190)

This commit is contained in:
tswstarplanet 2020-03-16 18:06:13 +08:00 committed by GitHub
parent f6f29f4abb
commit a3767642a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,8 +64,8 @@ public class HadoopUtils implements Closeable {
}
});
private static Configuration configuration;
private static FileSystem fs;
private Configuration configuration;
private FileSystem fs;
private static String hdfsUser = PropertyUtils.getString(Constants.HDFS_ROOT_USER);
@ -99,7 +99,7 @@ public class HadoopUtils implements Closeable {
/**
* init hadoop configuration
*/
private static void init() {
private void init() {
try {
configuration = new Configuration();