Skip to content

Commit

Permalink
Do not use path-style access
Browse files Browse the repository at this point in the history
  • Loading branch information
ywelsch committed Jul 2, 2018
1 parent f8522c8 commit 05072a5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions plugins/repository-s3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ if (!s3AccessKey && !s3SecretKey && !s3Bucket && !s3BasePath) {
final String minioVersion = 'RELEASE.2018-06-22T23-48-46Z'
final String minioBinDir = "${buildDir}/minio/bin"
final String minioDataDir = "${buildDir}/minio/data"
final String minioAddress = "localhost:60920"
final String minioAddress = "127.0.0.1:60920"

final String minioDistribution
final String minioCheckSum
Expand Down Expand Up @@ -160,7 +160,6 @@ if (useFixture && minioDistribution) {
minioDataDir)
minio.environment().put('MINIO_ACCESS_KEY', s3AccessKey)
minio.environment().put('MINIO_SECRET_KEY', s3SecretKey)
minio.environment().put('MINIO_DOMAIN', 'localhost')
final Process process = minio.start()
if (JavaVersion.current() <= JavaVersion.VERSION_1_8) {
try {
Expand Down

0 comments on commit 05072a5

Please sign in to comment.