Merge branch 'dev'

This commit is contained in:
Feng Lee 2015-02-12 22:01:08 +08:00
commit b392c040c1
2 changed files with 9 additions and 1 deletions

8
.travis.yml Normal file
View File

@ -0,0 +1,8 @@
language: erlang
otp_release:
- 17.0
script:
- make

View File

@ -147,7 +147,7 @@ handle_cast(_Msg, State) ->
{noreply, State}.
handle_info({'DOWN', MRef, process, DownPid, _Reason}, State) ->
ets:match_delete(emqtt_client, {{'_', DownPid, MRef}}),
ets:match_delete(?TABLE, {{'_', DownPid, MRef}}),
{noreply, State};
handle_info(_Info, State) ->