diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3b83853d6..4de2f645f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -377,7 +377,7 @@ jobs: - run: python3 -m pip install pytest -c requirements.txt working-directory: test/ - - run: python3 -m pytest test.py + - run: python3 -m pytest test.py -s working-directory: test/mrts test-ee: diff --git a/test/mrts/test.py b/test/mrts/test.py index a399e8eed..d1d3a65fd 100644 --- a/test/mrts/test.py +++ b/test/mrts/test.py @@ -67,6 +67,12 @@ def test_abort_api_and_functionality(self, get_status: bool): _, _, bins = self.as_connection.get(self.keys[0], policy) assert bins == {self.bin_name: 1} self.as_connection.put(self.keys[1], {self.bin_name: 2}, policy) + digest = aerospike.calc_digest("test", "demo", self.keys[0]) + res = self.as_connection.info_all(f"debug-record:namespace=test;keyd={digest}") + print(res) + digest = aerospike.calc_digest("test", "demo", self.keys[1]) + res = self.as_connection.info_all(f"debug-record:namespace=test;keyd={digest}") + print(res) retval = self.as_connection.abort(transaction=mrt, get_abort_status=get_status) if get_status: assert type(retval) is int