Commit 9072e2a1 authored by Dominik Charousset's avatar Dominik Charousset

Announce config_value::dictionary by default

parent 72776069
...@@ -58,7 +58,8 @@ actor_system_config::actor_system_config() ...@@ -58,7 +58,8 @@ actor_system_config::actor_system_config()
add_message_type_impl<std::vector<atom_value>>("std::vector<@atom>"); add_message_type_impl<std::vector<atom_value>>("std::vector<@atom>");
add_message_type_impl<std::vector<message>>("std::vector<@message>"); add_message_type_impl<std::vector<message>>("std::vector<@message>");
add_message_type_impl<config_value_map>("config_value_map"); add_message_type_impl<config_value_map>("config_value_map");
add_message_type_impl<config_value::list>("config_value_list"); add_message_type_impl<config_value::list>("config_value::list");
add_message_type_impl<config_value::dictionary>("config_value::dictionary");
// (1) hard-coded defaults // (1) hard-coded defaults
stream_desired_batch_complexity = defaults::stream::desired_batch_complexity; stream_desired_batch_complexity = defaults::stream::desired_batch_complexity;
stream_max_batch_delay = defaults::stream::max_batch_delay; stream_max_batch_delay = defaults::stream::max_batch_delay;
......
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