mirror of
https://github.com/pgsty/minio.git
synced 2026-09-26 04:45:59 +03:00
chore(deps): align the SILO Go dependency stack
Standardize the related SILO components on Go 1.27 tooling, etcd 3.7.1, current Go-maintained modules, shared runtime versions, and explicit security and portability pins. Keep the shared package Go 1.26 consumer floor, isolate lint tooling from product dependency selection, and preserve upstream-compatible import paths.
This commit is contained in:
@@ -35,7 +35,7 @@ func TestNatsConnPlain(t *testing.T) {
|
||||
Enable: true,
|
||||
Address: xnet.Host{
|
||||
Name: "localhost",
|
||||
Port: (xnet.Port(opts.Port)),
|
||||
Port: xnet.Port(opts.Port),
|
||||
IsPortSet: true,
|
||||
},
|
||||
Subject: "test",
|
||||
@@ -59,7 +59,7 @@ func TestNatsConnUserPass(t *testing.T) {
|
||||
Enable: true,
|
||||
Address: xnet.Host{
|
||||
Name: "localhost",
|
||||
Port: (xnet.Port(opts.Port)),
|
||||
Port: xnet.Port(opts.Port),
|
||||
IsPortSet: true,
|
||||
},
|
||||
Subject: "test",
|
||||
@@ -85,7 +85,7 @@ func TestNatsConnToken(t *testing.T) {
|
||||
Enable: true,
|
||||
Address: xnet.Host{
|
||||
Name: "localhost",
|
||||
Port: (xnet.Port(opts.Port)),
|
||||
Port: xnet.Port(opts.Port),
|
||||
IsPortSet: true,
|
||||
},
|
||||
Subject: "test",
|
||||
@@ -116,7 +116,7 @@ func TestNatsConnNKeySeed(t *testing.T) {
|
||||
Enable: true,
|
||||
Address: xnet.Host{
|
||||
Name: "localhost",
|
||||
Port: (xnet.Port(opts.Port)),
|
||||
Port: xnet.Port(opts.Port),
|
||||
IsPortSet: true,
|
||||
},
|
||||
Subject: "test",
|
||||
|
||||
Reference in New Issue
Block a user