Fix download permission issue
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
0969d6dcd9
commit
921c70a785
@ -316,7 +316,7 @@ impl MinioService {
|
|||||||
bucket_name: &str,
|
bucket_name: &str,
|
||||||
access: bool,
|
access: bool,
|
||||||
) -> anyhow::Result<()> {
|
) -> anyhow::Result<()> {
|
||||||
let target = self.absolute_bucket_name(bucket_name);
|
let target = format!("{}/*", self.absolute_bucket_name(bucket_name));
|
||||||
|
|
||||||
let res = self
|
let res = self
|
||||||
.exec_mc_cmd::<BasicMinioResult>(&[
|
.exec_mc_cmd::<BasicMinioResult>(&[
|
||||||
@ -339,7 +339,7 @@ impl MinioService {
|
|||||||
|
|
||||||
/// Get current bucket anonymous access status
|
/// Get current bucket anonymous access status
|
||||||
pub async fn bucket_get_anonymous_access(&self, bucket_name: &str) -> anyhow::Result<bool> {
|
pub async fn bucket_get_anonymous_access(&self, bucket_name: &str) -> anyhow::Result<bool> {
|
||||||
let bucket_name = self.absolute_bucket_name(bucket_name);
|
let bucket_name = format!("{}/*", self.absolute_bucket_name(bucket_name));
|
||||||
Ok(self
|
Ok(self
|
||||||
.exec_mc_cmd::<MinioAnonymousAccess>(&["anonymous", "get", bucket_name.as_str()])
|
.exec_mc_cmd::<MinioAnonymousAccess>(&["anonymous", "get", bucket_name.as_str()])
|
||||||
.await?
|
.await?
|
||||||
|
Loading…
Reference in New Issue
Block a user