Skip to content

Commit

Permalink
[regression](case) fix bad base (#38084)
Browse files Browse the repository at this point in the history
## Proposed changes

replace hardcode s3 properties
<!--Describe your changes.-->

---------

Co-authored-by: stephen <hello-stephen@qq.com>
  • Loading branch information
hello-stephen and stephen authored Jul 18, 2024
1 parent 5cddb70 commit 90466ca
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 50 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -752,6 +752,11 @@ class Suite implements GroovyInterceptable {
return (enableBrokerLoad != null && enableBrokerLoad.equals("true"));
}

String getS3Provider() {
String s3Provider = context.config.otherConfigs.get("s3Provider");
return s3Provider
}

String getS3Region() {
String s3Region = context.config.otherConfigs.get("s3Region");
return s3Region
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,6 @@ suite("test_s3_load_with_load_parallelism", "load_p0") {
)
${prop}
"""
// "AWS_ENDPOINT" = "cos.ap-beijing.myqcloud.com",
// "AWS_ACCESS_KEY" = "AKIDd9RVMzIOI0V7Wlnbr9JG0WrhJk28zc2H",
// "AWS_SECRET_KEY"="4uWxMhqnW3Plz97sPjqlSUXO1RhokRuO",
// "AWS_REGION" = "ap-beijing"

def max_try_milli_secs = 600000
while (max_try_milli_secs > 0) {
Expand Down
Loading

0 comments on commit 90466ca

Please sign in to comment.