Skip to content

Commit

Permalink
fix(s3Stream): support aliyun oss (#804)
Browse files Browse the repository at this point in the history
Signed-off-by: Curtis Wan <[email protected]>
  • Loading branch information
mooc9988 authored Dec 6, 2023
1 parent 4f4d63b commit 3e77cff
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion s3stream/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.automq.elasticstream</groupId>
<artifactId>s3stream</artifactId>
<version>0.6.8-SNAPSHOT</version>
<version>0.6.9-SNAPSHOT</version>
<properties>
<mockito-core.version>5.5.0</mockito-core.version>
<junit-jupiter.version>5.10.0</junit-jupiter.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -566,8 +566,8 @@ private void checkConfig() {

private void checkAvailable() {
byte[] content = new Date().toString().getBytes(StandardCharsets.UTF_8);
String path = String.format("/check_available/%d", System.currentTimeMillis());
String multipartPath = String.format("/check_available_multipart/%d", System.currentTimeMillis());
String path = String.format("check_available/%d", System.currentTimeMillis());
String multipartPath = String.format("check_available_multipart/%d", System.currentTimeMillis());
try {
// Simple write/read/delete
this.write(path, Unpooled.wrappedBuffer(content)).get(30, TimeUnit.SECONDS);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ default CompletableFuture<ByteBuf> rangeRead(String path, long start, long end)
/**
* Write data to object.
*
* @param path object path.
* @param path object path. The path should not start with '/' since Aliyun OSS does not support it.
* @param data data.
* @param throttleStrategy throttle strategy.
*/
Expand Down

0 comments on commit 3e77cff

Please sign in to comment.