Commit b3478a09 authored by Dominik Charousset's avatar Dominik Charousset

Fix config parameter names

parent af5fe81c
......@@ -31,9 +31,9 @@ namespace caf::detail {
impl::impl(scheduled_actor* self) : super(self) {
auto& cfg = self->system().config();
buffer_capacity_ = get_or(cfg, "stream.size-policy.buffer-capacity",
buffer_capacity_ = get_or(cfg, "caf.stream.size-policy.buffer-capacity",
defaults::stream::size_policy::buffer_capacity);
bytes_per_batch_ = get_or(cfg, "stream.size-policy.bytes-per-batch",
bytes_per_batch_ = get_or(cfg, "caf.stream.size-policy.bytes-per-batch",
defaults::stream::size_policy::bytes_per_batch);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment