[Fix-10305][common] AWS config Constant definitions are repeated (#10311)
This commit is contained in:
parent
e57c2d1663
commit
70dbcb2155
|
|
@ -51,9 +51,6 @@ public final class Constants {
|
|||
public static final String REGISTRY_DOLPHINSCHEDULER_LOCK_FAILOVER_STARTUP_MASTERS = "/lock/failover/startup-masters";
|
||||
public static final String FORMAT_SS = "%s%s";
|
||||
public static final String FORMAT_S_S = "%s/%s";
|
||||
public static final String AWS_ACCESS_KEY_ID = "aws.access.key.id";
|
||||
public static final String AWS_SECRET_ACCESS_KEY = "aws.secret.access.key";
|
||||
public static final String AWS_REGION = "aws.region";
|
||||
public static final String FOLDER_SEPARATOR = "/";
|
||||
|
||||
public static final String RESOURCE_TYPE_FILE = "resources";
|
||||
|
|
|
|||
|
|
@ -33,9 +33,9 @@ import com.amazonaws.services.s3.transfer.MultipleFileDownload;
|
|||
import com.amazonaws.services.s3.transfer.TransferManager;
|
||||
import com.amazonaws.services.s3.transfer.TransferManagerBuilder;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.apache.dolphinscheduler.common.Constants;
|
||||
import org.apache.dolphinscheduler.common.enums.ResUploadType;
|
||||
import org.apache.dolphinscheduler.common.storage.StorageOperate;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.spi.enums.ResourceType;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
|
@ -67,11 +67,11 @@ public class S3Utils implements Closeable, StorageOperate {
|
|||
|
||||
private static final Logger logger = LoggerFactory.getLogger(S3Utils.class);
|
||||
|
||||
public static final String ACCESS_KEY_ID = PropertyUtils.getString(Constants.AWS_ACCESS_KEY_ID);
|
||||
public static final String ACCESS_KEY_ID = PropertyUtils.getString(TaskConstants.AWS_ACCESS_KEY_ID);
|
||||
|
||||
public static final String SECRET_KEY_ID = PropertyUtils.getString(Constants.AWS_SECRET_ACCESS_KEY);
|
||||
public static final String SECRET_KEY_ID = PropertyUtils.getString(TaskConstants.AWS_SECRET_ACCESS_KEY);
|
||||
|
||||
public static final String REGION = PropertyUtils.getString(Constants.AWS_REGION);
|
||||
public static final String REGION = PropertyUtils.getString(TaskConstants.AWS_REGION);
|
||||
|
||||
|
||||
private AmazonS3 s3Client = null;
|
||||
|
|
|
|||
Loading…
Reference in New Issue