You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ro...@apache.org on 2015/06/29 23:46:43 UTC

[37/50] couch commit: updated refs/heads/COUCHDB-2734-header-date to f3e022c

fix state bug


Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch/commit/6ab8d833
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch/tree/6ab8d833
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch/diff/6ab8d833

Branch: refs/heads/COUCHDB-2734-header-date
Commit: 6ab8d833998caf1a85ee9471e0b2fea5cada2c64
Parents: d253ce8
Author: Bob Ippolito <bo...@redivi.com>
Authored: Thu Dec 26 14:28:31 2013 -0800
Committer: Bob Ippolito <bo...@redivi.com>
Committed: Thu Dec 26 14:28:31 2013 -0800

----------------------------------------------------------------------
 examples/websocket/websocket.erl | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch/blob/6ab8d833/examples/websocket/websocket.erl
----------------------------------------------------------------------
diff --git a/examples/websocket/websocket.erl b/examples/websocket/websocket.erl
index 4a782d8..cd52da1 100644
--- a/examples/websocket/websocket.erl
+++ b/examples/websocket/websocket.erl
@@ -111,7 +111,8 @@ broadcast_server(Pids) ->
                 {'DOWN', MRef, process, Pid, _Reason} ->
                     broadcast_down(Pid, MRef, Pids);
                 Msg ->
-                    io:format("Unknown message: ~p~n", [Msg])
+                    io:format("Unknown message: ~p~n", [Msg]),
+                    Pids
             end,
     erlang:hibernate(?MODULE, broadcast_server, [Pids1]).