-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: TOOLS-2622 correctly parse asconf non humanized uint (#14)
* fix: correctly parse asconf non humanized uint * ci: tests use v1 and v2 feature keys
- Loading branch information
1 parent
91e7dd6
commit 8f006d2
Showing
11 changed files
with
165 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[{"Source":"testdata/cases/stop-write/stop-write.conf","Destination":"testdata/cases/stop-write/stop-write-res-.yaml","Expected":"testdata/cases/stop-write/stop-write.yaml","Arguments":["convert","--aerospike-version","6.3.0.6","--format","asconfig","--output","testdata/cases/stop-write/stop-write-res-.yaml"],"SkipServerTest":false,"ServerErrorAllowList":null}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
|
||
logging { | ||
|
||
console { | ||
context any info | ||
} | ||
} | ||
|
||
namespace test { | ||
memory-size 1G | ||
replication-factor 2 | ||
|
||
storage-engine device { | ||
data-in-memory true | ||
file /opt/aerospike/data/test.dat | ||
filesize 2000000000 | ||
} | ||
|
||
set s1 { | ||
stop-writes-count 10G | ||
stop-writes-size 10M | ||
} | ||
} | ||
|
||
network { | ||
|
||
fabric { | ||
port 3001 | ||
} | ||
|
||
heartbeat { | ||
mode multicast | ||
port 3002 | ||
} | ||
|
||
service { | ||
port 3000 | ||
} | ||
} | ||
|
||
security { | ||
} | ||
|
||
service { | ||
feature-key-file /etc/aerospike/secret/features.conf | ||
} | ||
|
||
xdr { | ||
|
||
dc dc1 { | ||
auth-mode internal | ||
auth-password-file /etc/aerospike/secret/password_DC1.txt | ||
auth-user admin | ||
node-address-port aeroclusterdst-0-0 3000 | ||
|
||
namespace test { | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
logging: | ||
- any: info | ||
name: console | ||
namespaces: | ||
- memory-size: 1073741824 | ||
name: test | ||
replication-factor: 2 | ||
sets: | ||
- name: s1 | ||
stop-writes-count: 10737418240 | ||
stop-writes-size: 10485760 | ||
storage-engine: | ||
data-in-memory: true | ||
files: | ||
- /opt/aerospike/data/test.dat | ||
filesize: 2000000000 | ||
type: device | ||
network: | ||
fabric: | ||
port: 3001 | ||
heartbeat: | ||
mode: multicast | ||
port: 3002 | ||
service: | ||
port: 3000 | ||
security: {} | ||
service: | ||
feature-key-file: /etc/aerospike/secret/features.conf | ||
xdr: | ||
dcs: | ||
- auth-mode: internal | ||
auth-password-file: /etc/aerospike/secret/password_DC1.txt | ||
auth-user: admin | ||
name: dc1 | ||
namespaces: | ||
- name: test | ||
node-address-ports: | ||
- aeroclusterdst-0-0:3000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"TestedVersion":"6.3.0.6","OriginallyUsedVersion":"6.3.0.6"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[{"Source":"testdata/cases/stop-write/stop-write.yaml","Destination":"testdata/cases/stop-write/stop-write-res-.conf","Expected":"testdata/cases/stop-write/stop-write.conf","Arguments":["convert","--aerospike-version","6.3.0.6","--format","yaml","--output","testdata/cases/stop-write/stop-write-res-.conf"],"SkipServerTest":false,"ServerErrorAllowList":null}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters