Fix data type of mountpoint from string to binary
This commit is contained in:
parent
dee88fb018
commit
981d785c06
|
@ -861,6 +861,8 @@ end}.
|
||||||
maps:put(iolist_to_binary(Topic), P, Acc)
|
maps:put(iolist_to_binary(Topic), P, Acc)
|
||||||
end, string:tokens(Val, ","))
|
end, string:tokens(Val, ","))
|
||||||
end;
|
end;
|
||||||
|
("mountpoint", Val) ->
|
||||||
|
{mountpoint, iolist_to_binary(Val)};
|
||||||
(Opt, Val) ->
|
(Opt, Val) ->
|
||||||
{list_to_atom(Opt), Val}
|
{list_to_atom(Opt), Val}
|
||||||
end,
|
end,
|
||||||
|
|
Loading…
Reference in New Issue