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: 2 additions & 1 deletion core/range_scan_orchestrator_options.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#include "range_scan_options.hxx"
#include "timeout_defaults.hxx"

#include <couchbase/best_effort_retry_strategy.hxx>
#include <couchbase/mutation_token.hxx>
#include <couchbase/retry_strategy.hxx>

Expand Down Expand Up @@ -51,7 +52,7 @@ struct range_scan_orchestrator_options {
std::uint32_t batch_byte_limit{ range_scan_continue_options::default_batch_byte_limit };
std::uint16_t concurrency{ default_concurrency };

std::shared_ptr<couchbase::retry_strategy> retry_strategy{ nullptr };
std::shared_ptr<couchbase::retry_strategy> retry_strategy{ make_best_effort_retry_strategy() };
std::chrono::milliseconds timeout{ timeout_defaults::key_value_scan_timeout };
std::shared_ptr<couchbase::tracing::request_span> parent_span{};
};
Expand Down