11.0.1
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:
aerospike.get_expression_base64()
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:
client.get_expression_base64()
client.get_cdtctx_base64()
Bug Fixes
- [CLIENT-2267] Revert adding base64 methods to aerospike module.