Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse Schmidt committed Sep 26, 2024
1 parent 792a590 commit 1654012
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1755,7 +1755,7 @@ func (suite *CmdTestSuite) TestFailInvalidArg() {

func (suite *CmdTestSuite) TestConfigFile() {
configFile := "tests/asvec_.yml"
cmd := fmt.Sprintf("node ls --config-file %s --cluster-name %s", configFile, suite.configFileClusterName)
cmd := fmt.Sprintf("index ls --log-level debug --config-file %s --cluster-name %s", configFile, suite.configFileClusterName)

stdout, stderr, err := suite.RunCmd(strings.Split(cmd, " ")...)

Expand Down
10 changes: 5 additions & 5 deletions tests/asvec_.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ vanilla:
host: 127.0.0.1:10000

tls:
seeds: 127.0.0.1:10000
seeds: localhost:10000
tls-cafile: docker/tls/config/tls/ca.aerospike.com.crt

mtls:
host: 127.0.0.1:10000
tls-cafile: docker/tls/config/tls/ca.aerospike.com.crt
host: localhost:10000
tls-cafile: docker/mtls/config/tls/ca.aerospike.com.crt
tls-certfile: "docker/mtls/config/tls/localhost.crt"
tls-keyfile: "docker/mtls/config/tls/localhost.key"

auth:
host: 127.0.0.1:10000
tls-cafile: docker/tls/config/tls/ca.aerospike.com.crt
host: localhost:10000
tls-cafile: docker/auth/config/tls/ca.aerospike.com.crt
credentials: admin:admin

0 comments on commit 1654012

Please sign in to comment.