We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb82a26 commit 6b9f144Copy full SHA for 6b9f144
1 file changed
src/mtx.erl
@@ -38,4 +38,4 @@ terminate(_Reason, _State) -> ok.
38
code_change(_OldVsn, State, _Extra) -> {ok, State}.
39
40
send(Stats,#state{socket=Socket,host=Host,port=Port}=State) ->
41
- gen_udp:send(Socket,Host,Port,lists:concat(Stats)), {noreply,State}.
+ ok = gen_udp:send(Socket,Host,Port,lists:concat(Stats)), {noreply,State}.
0 commit comments