fix(influxdb_bridge): no need to create atom for pool name
This commit is contained in:
parent
d5f62d917e
commit
30a8a436b4
|
@ -1,7 +1,7 @@
|
|||
{erl_opts, [debug_info]}.
|
||||
{deps, [
|
||||
{hstreamdb_erl, {git, "https://github.com/hstreamdb/hstreamdb_erl.git", {tag, "0.2.5"}}},
|
||||
{influxdb, {git, "https://github.com/emqx/influxdb-client-erl", {tag, "1.1.7"}}},
|
||||
{influxdb, {git, "https://github.com/emqx/influxdb-client-erl", {tag, "1.1.8"}}},
|
||||
{emqx, {path, "../../apps/emqx"}}
|
||||
]}.
|
||||
|
||||
|
|
|
@ -282,7 +282,7 @@ client_config(
|
|||
{host, str(Host)},
|
||||
{port, Port},
|
||||
{pool_size, erlang:system_info(schedulers)},
|
||||
{pool, binary_to_atom(InstId, utf8)},
|
||||
{pool, InstId},
|
||||
{precision, atom_to_binary(maps:get(precision, Config, ms), utf8)}
|
||||
] ++ protocol_config(Config).
|
||||
|
||||
|
|
Loading…
Reference in New Issue