fix: huawei obs upload file address is incorrect
修复华为 OBS 上传文件生成地址错误的问题。
FilePathDescriptor pathDescriptor = new FilePathDescriptor.Builder()
- .setBasePath(domain)
+ .setBasePath(basePath.toString())
.setSubPath(source)
.setAutomaticRename(true)
.setRenamePredicate(relativePath ->
domain 为自定义域名,如果这里不填写 domain,使用 bucket + endpoint 作为访问地址的话,会导致最终保存的访问地址仅只有一个文件名。
此 PR 无法 cherry pick 到 release-1.4,因为会和 https://github.com/halo-dev/halo/pull/1500 冲突。