Skip to content

Commit

Permalink
Aliyun: Remove spring-boot dependency (apache#11291)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbonofre authored Oct 28, 2024
1 parent 6c58f5b commit e013c67
Show file tree
Hide file tree
Showing 10 changed files with 587 additions and 761 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public static AliyunOSSExtension initialize() {
} else {
LOG.info(
"Initializing AliyunOSSExtension implementation with default AliyunOSSMockExtension");
extension = AliyunOSSMockExtension.builder().silent().build();
extension = AliyunOSSMockExtension.builder().build();
}

return extension;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public void testWrite() throws IOException {
reset(ossMock);

// Write large file.
writeAndVerify(ossMock, uri, randomData(32 * 1024 * 1024), arrayWrite);
writeAndVerify(ossMock, uri, randomData(32 * 1024), arrayWrite);
verify(ossMock, times(1)).putObject(any());
reset(ossMock);
}
Expand Down
Loading

0 comments on commit e013c67

Please sign in to comment.