Skip to content

11.0.1

Compare
Choose a tag to compare
@juliannguyen4 juliannguyen4 released this 29 Mar 22:21
· 311 commits to stage since this release
9001132

Breaking Changes

Revert adding base64 methods to aerospike module

These methods have been removed from the aerospike module due to memory errors when they are called:

  1. aerospike.get_expression_base64()
  2. aerospike.get_cdtctx_base64()

Course of action

Call these methods from a client instance instead of the aerospike module. Assuming client is an instance of aerospike.Client, the above calls should be replaced by:

  1. client.get_expression_base64()
  2. client.get_cdtctx_base64()

Bug Fixes

  • [CLIENT-2267] Revert adding base64 methods to aerospike module.