From 619cc948df407e5a89c373bf0503e65ba0b1297a Mon Sep 17 00:00:00 2001 From: Panagiotis Papadomitsos Date: Tue, 4 Oct 2016 02:14:35 -0700 Subject: [PATCH] Fix unexported function, update doc --- README.md | 4 ++-- rebar.config | 1 - src/gen_rpc_helper.erl | 1 + 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 25043de..88566e3 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ To build this project you need to have the following: * **GNU make** >= 3.80 -* **rebar3** >= 3.1 +* **rebar3** >= 3.2 ## Usage @@ -282,7 +282,7 @@ An inactivity timeout has been implemented inside the `client` and `server` proc ## Performance -`gen_rpc` is being used in production extensively with over **150.000 incoming calls/sec/node** on a **8-core Intel Xeon E5** CPU and **Erlang 18.2**. The median payload size is **500 KB**. No stability or scalability issues have been detected in over a year. +`gen_rpc` is being used in production extensively with over **150.000 incoming calls/sec/node** on a **8-core Intel Xeon E5** CPU and **Erlang 19.1**. The median payload size is **500 KB**. No stability or scalability issues have been detected in over a year. ## Known Issues diff --git a/rebar.config b/rebar.config index f094968..0daea45 100644 --- a/rebar.config +++ b/rebar.config @@ -52,7 +52,6 @@ {erl_opts, [{d,'HUT_LAGER'}, {parse_transform, lager_transform}, warnings_as_errors, - export_all, no_inline_list_funcs]}, {deps, [{lager, "~> 3.0"}, {sync, {git, "git://github.com/rustyio/sync.git", {branch, "master"}}} diff --git a/src/gen_rpc_helper.erl b/src/gen_rpc_helper.erl index 6063f9e..93c4f49 100644 --- a/src/gen_rpc_helper.erl +++ b/src/gen_rpc_helper.erl @@ -25,6 +25,7 @@ merge_sockopt_lists/2, get_server_driver_options/1, get_client_config_per_node/1, + get_client_driver_options/1, get_connect_timeout/0, get_send_timeout/1, get_rpc_module_control/0,