Fix dialyze issue

This commit is contained in:
terry-xiaoyu 2018-08-31 20:48:26 +08:00
parent 2f63b7a487
commit ec456dcc73
3 changed files with 4 additions and 5 deletions

View File

@ -22,7 +22,7 @@
%% @doc Encode any data to base62 binary
-spec encode(string()
| integer()
| binary()) -> float().
| binary()) -> binary().
encode(I) when is_integer(I) ->
encode(integer_to_binary(I));
encode(S) when is_list(S)->
@ -110,4 +110,3 @@ decode_char(I) when I >= $A andalso I =< $Z->
decode_char(9, I) ->
I + 61 - $A.

View File

@ -117,7 +117,7 @@ handle_info(start, State = #state{options = Options,
{noreply, State#state{client_pid = ClientPid}};
{error,_} ->
erlang:send_after(ReconnectTime, self(), start),
{noreply, State = #state{reconnect_count = ReconnectCount-1}}
{noreply, State#state{reconnect_count = ReconnectCount-1}}
end;
%%----------------------------------------------------------------
@ -138,7 +138,7 @@ handle_info(start, State = #state{options = Options,
{noreply, State#state{client_pid = ClientPid}};
{error,_} ->
erlang:send_after(ReconnectTime, self(), start),
{noreply, State = #state{reconnect_count = ReconnectCount-1}}
{noreply, State#state{reconnect_count = ReconnectCount-1}}
end;
%%----------------------------------------------------------------

View File

@ -27,7 +27,7 @@ start_link() ->
supervisor:start_link({local, ?MODULE}, ?MODULE, []).
%% @doc List all bridges
-spec(bridges() -> [{node(), emqx_topic:topic(), pid()}]).
-spec(bridges() -> [{node(), Status :: binary()}]).
bridges() ->
[{Name, emqx_bridge:status(Pid)} || {Name, Pid, _, _} <- supervisor:which_children(?MODULE)].