Skip to content

Commit

Permalink
Listener is not copied when AsyncOperateWrite is cloned
Browse files Browse the repository at this point in the history
  • Loading branch information
volgunin-ttd committed Jan 8, 2025
1 parent cb11a52 commit 959f6e4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions AerospikeClient/Async/AsyncOperateWrite.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public AsyncOperateWrite(AsyncCluster cluster, RecordListener listener, Key key,
public AsyncOperateWrite(AsyncOperateWrite other)
: base(other)
{
this.listener = other.listener;
this.args = other.args;
}

Expand Down

0 comments on commit 959f6e4

Please sign in to comment.