Skip to content

Commit

Permalink
fix: try to fix bucket issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Frixxie committed Nov 16, 2024
1 parent 5f111de commit 04a43ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions backend/src/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ mod tests {
let minio_container = minio::MinIO::default()
.with_env_var("MINIO_ROOT_USER", "admin")
.with_env_var("MINIO_ROOT_PASSWORD", "adminadmin")
.with_env_var("MINIO_BUCKET", "no")
.start()
.await
.unwrap();
Expand Down
1 change: 1 addition & 0 deletions backend/src/router/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ mod tests {
let minio_container = minio::MinIO::default()
.with_env_var("MINIO_ROOT_USER", "admin")
.with_env_var("MINIO_ROOT_PASSWORD", "adminadmin")
.with_env_var("MINIO_BUCKET", "no")
.start()
.await
.unwrap();
Expand Down

0 comments on commit 04a43ae

Please sign in to comment.