Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions aerospike_helpers/operations/list_operations.py
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,9 @@ def list_insert_items(bin_name: str, index, values, policy: Optional[dict] = Non

if policy:
op_dict[LIST_POLICY_KEY] = policy

if ctx:
if ctx:
op_dict[CTX_KEY] = ctx
elif ctx:
op_dict[CTX_KEY] = ctx

return op_dict
Expand Down
Loading