Skip to content

Commit

Permalink
[MINOR] fix: update doris path in TestDorisAbstractIT (apache#2853)
Browse files Browse the repository at this point in the history
### What changes were proposed in this pull request?

update doris path in TestDorisAbstractIT.

### Why are the changes needed?

current path in code is error, cannot upload log in x86 env
use soft link instead. 

### Does this PR introduce _any_ user-facing change?

N/A

### How was this patch tested?

Mannal
  • Loading branch information
zhoukangcn authored Apr 9, 2024
1 parent 1a74d6b commit 4ae3a59
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ public class TestDorisAbstractIT extends TestJdbcAbstractIT {
private static final ContainerSuite containerSuite = ContainerSuite.getInstance();
protected static final String DRIVER_CLASS_NAME = "com.mysql.jdbc.Driver";

private static final String DORIS_FE_PATH = "/opt/apache-doris-1.2.7.1-bin-arm64/fe/";
private static final String DORIS_BE_PATH = "/opt/apache-doris-1.2.7.1-bin-arm64/be/";
private static final String DORIS_FE_PATH = "/opt/apache-doris/fe/";
private static final String DORIS_BE_PATH = "/opt/apache-doris/be/";

@BeforeAll
public static void startup() {
Expand Down

0 comments on commit 4ae3a59

Please sign in to comment.