Skip to content
Merged
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
3 changes: 3 additions & 0 deletions aeron-archive/src/main/c/client/aeron_archive_context.c
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,8 @@ int aeron_archive_context_duplicate(aeron_archive_context_t **dest_p, aeron_arch
return -1;
}

_ctx->owns_idle_strategy = false;

*dest_p = _ctx;

return 0;
Expand Down Expand Up @@ -443,6 +445,7 @@ int aeron_archive_context_conclude(aeron_archive_context_t *ctx)
if (ctx->owns_aeron_client && NULL != ctx->aeron)
{
aeron_close(ctx->aeron);
ctx->aeron = NULL;
}

return -1;
Expand Down
Loading