mirror of
https://github.com/minio/minio.git
synced 2025-03-03 07:10:07 -05:00
Initialize peers properly for localhost. (#3600)
This introduced a regression. Fixes #3594
This commit is contained in:
parent
0674fa43ff
commit
80f1387877
@ -425,18 +425,18 @@ func serverMain(c *cli.Context) {
|
|||||||
handler, err := configureServerHandler(srvConfig)
|
handler, err := configureServerHandler(srvConfig)
|
||||||
fatalIf(err, "Unable to configure one of server's RPC services.")
|
fatalIf(err, "Unable to configure one of server's RPC services.")
|
||||||
|
|
||||||
// Initialize S3 Peers inter-node communication only in distributed setup.
|
|
||||||
initGlobalS3Peers(endpoints)
|
|
||||||
|
|
||||||
// Initialize Admin Peers inter-node communication only in distributed setup.
|
|
||||||
initGlobalAdminPeers(endpoints)
|
|
||||||
|
|
||||||
// Initialize a new HTTP server.
|
// Initialize a new HTTP server.
|
||||||
apiServer := NewServerMux(serverAddr, handler)
|
apiServer := NewServerMux(serverAddr, handler)
|
||||||
|
|
||||||
// Set the global minio addr for this server.
|
// Set the global minio addr for this server.
|
||||||
globalMinioAddr = getLocalAddress(srvConfig)
|
globalMinioAddr = getLocalAddress(srvConfig)
|
||||||
|
|
||||||
|
// Initialize S3 Peers inter-node communication only in distributed setup.
|
||||||
|
initGlobalS3Peers(endpoints)
|
||||||
|
|
||||||
|
// Initialize Admin Peers inter-node communication only in distributed setup.
|
||||||
|
initGlobalAdminPeers(endpoints)
|
||||||
|
|
||||||
// Determine API endpoints where we are going to serve the S3 API from.
|
// Determine API endpoints where we are going to serve the S3 API from.
|
||||||
apiEndPoints, err := finalizeAPIEndpoints(apiServer.Server)
|
apiEndPoints, err := finalizeAPIEndpoints(apiServer.Server)
|
||||||
fatalIf(err, "Unable to finalize API endpoints for %s", apiServer.Server.Addr)
|
fatalIf(err, "Unable to finalize API endpoints for %s", apiServer.Server.Addr)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user