From 6a45334c8137e640c36724f131abebcefed76f86 Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Sun, 4 Aug 2019 17:22:39 -0700 Subject: [PATCH] Change play.minio.io to play.min.io --- README.md | 6 +++--- README_zh_CN.md | 6 +++--- docs/API.md | 4 ++-- docs/zh_CN/API.md | 4 ++-- src/test/functional/functional-tests.js | 4 ++-- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 5079c192..a5b7519f 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ You need five items in order to connect to MinIO object storage server. var Minio = require('minio') var minioClient = new Minio.Client({ - endPoint: 'play.minio.io', + endPoint: 'play.min.io', port: 9000, useSSL: true, accessKey: 'Q3AM3UQ867SPQQA43P2F', @@ -60,7 +60,7 @@ var minioClient = new Minio.Client({ This example program connects to an object storage server, makes a bucket on the server and then uploads a file to the bucket. -We will use the MinIO server running at [https://play.min.io:9000](https://play.min.io:9000) in this example. Feel free to use this service for testing and development. Access credentials shown in this example are open to the public. +We will use the MinIO server running at [https://play.min.io](https://play.min.io) in this example. Feel free to use this service for testing and development. Access credentials shown in this example are open to the public. #### file-uploader.js @@ -70,7 +70,7 @@ var Minio = require('minio') // Instantiate the minio client with the endpoint // and access keys as shown below. var minioClient = new Minio.Client({ - endPoint: 'play.minio.io', + endPoint: 'play.min.io', port: 9000, useSSL: true, accessKey: 'Q3AM3UQ867SPQQA43P2F', diff --git a/README_zh_CN.md b/README_zh_CN.md index c8083036..e13a4e81 100644 --- a/README_zh_CN.md +++ b/README_zh_CN.md @@ -40,7 +40,7 @@ npm install -g var Minio = require('minio') var minioClient = new Minio.Client({ - endPoint: 'play.minio.io', + endPoint: 'play.min.io', port: 9000, useSSL: true, accessKey: 'Q3AM3UQ867SPQQA43P2F', @@ -52,7 +52,7 @@ var minioClient = new Minio.Client({ 本示例连接到一个对象存储服务,创建一个存储桶并上传一个文件到存储桶中。 -我们在本示例中使用运行在 [https://play.min.io:9000](https://play.min.io:9000) 上的Minio服务,你可以用这个服务来开发和测试。示例中的访问凭据是公开的。 +我们在本示例中使用运行在 [https://play.min.io](https://play.min.io) 上的Minio服务,你可以用这个服务来开发和测试。示例中的访问凭据是公开的。 #### file-uploader.js @@ -62,7 +62,7 @@ var Minio = require('minio') // Instantiate the minio client with the endpoint // and access keys as shown below. var minioClient = new Minio.Client({ - endPoint: 'play.minio.io', + endPoint: 'play.min.io', port: 9000, useSSL: true, accessKey: 'Q3AM3UQ867SPQQA43P2F', diff --git a/docs/API.md b/docs/API.md index ae2dc21e..cc1d7327 100644 --- a/docs/API.md +++ b/docs/API.md @@ -8,7 +8,7 @@ var Minio = require('minio') var minioClient = new Minio.Client({ - endPoint: 'play.minio.io', + endPoint: 'play.min.io', port: 9000, useSSL: true, accessKey: 'Q3AM3UQ867SPQQA43P2F', @@ -75,7 +75,7 @@ __Example__ var Minio = require('minio') var minioClient = new Minio.Client({ - endPoint: 'play.minio.io', + endPoint: 'play.min.io', port: 9000, useSSL: true, accessKey: 'Q3AM3UQ867SPQQA43P2F', diff --git a/docs/zh_CN/API.md b/docs/zh_CN/API.md index 515f5bed..2b81866a 100644 --- a/docs/zh_CN/API.md +++ b/docs/zh_CN/API.md @@ -8,7 +8,7 @@ var Minio = require('minio') var minioClient = new Minio.Client({ - endPoint: 'play.minio.io', + endPoint: 'play.min.io', port: 9000, useSSL: true, accessKey: 'Q3AM3UQ867SPQQA43P2F', @@ -74,7 +74,7 @@ __示例__ var Minio = require('minio') var minioClient = new Minio.Client({ - endPoint: 'play.minio.io', + endPoint: 'play.min.io', port: 9000, useSSL: true, accessKey: 'Q3AM3UQ867SPQQA43P2F', diff --git a/src/test/functional/functional-tests.js b/src/test/functional/functional-tests.js index 3b936f0e..48d7333f 100644 --- a/src/test/functional/functional-tests.js +++ b/src/test/functional/functional-tests.js @@ -41,13 +41,13 @@ require('source-map-support').install() describe('functional tests', function() { this.timeout(30 * 60 * 1000) var playConfig = {} - // If credentials aren't given, default to play.minio.io. + // If credentials aren't given, default to play.min.io. if (process.env['SERVER_ENDPOINT']) { var res = process.env['SERVER_ENDPOINT'].split(":") playConfig.endPoint = res[0] playConfig.port = parseInt(res[1]) } else { - playConfig.endPoint = 'play.minio.io' + playConfig.endPoint = 'play.min.io' playConfig.port = 9000 } playConfig.accessKey = process.env['ACCESS_KEY'] || 'Q3AM3UQ867SPQQA43P2F'