summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Smith (work) <jhs@iriscouch.com>2013-02-08 11:31:18 +0000
committerJason Smith (work) <jhs@iriscouch.com>2013-02-08 11:31:18 +0000
commit663792c23a4f3265e88e2f91ae0613e5adcf8314 (patch)
treea4245aeffa220bd3771da20ddaa4323af01ac848
parent7b59667e6ba94c5e21a7c880fd58782a4f212f28 (diff)
downloadcouchdb-663792c23a4f3265e88e2f91ae0613e5adcf8314.tar.gz
Undo changes to unrelated code
-rw-r--r--share/www/verify_install.html2
-rw-r--r--src/ibrowse/ibrowse_http_client.erl7
2 files changed, 0 insertions, 9 deletions
diff --git a/share/www/verify_install.html b/share/www/verify_install.html
index ce85c0344..7e3a7a73d 100644
--- a/share/www/verify_install.html
+++ b/share/www/verify_install.html
@@ -75,8 +75,6 @@ specific language governing permissions and limitations under the License.
// temporary view
var resp = db.query(function(doc) {
- if(doc.a)
- debugger
if(doc.a) {
emit(doc.a, doc.a);
}
diff --git a/src/ibrowse/ibrowse_http_client.erl b/src/ibrowse/ibrowse_http_client.erl
index 5acf52f61..c01385a90 100644
--- a/src/ibrowse/ibrowse_http_client.erl
+++ b/src/ibrowse/ibrowse_http_client.erl
@@ -244,13 +244,6 @@ handle_info({trace, Bool}, State) ->
put(my_trace_flag, Bool),
{noreply, State};
-handle_info({take_stream, Pid}, #state{socket=Socket, reply_buffer=Body}=State) ->
- io:format("Send socket ~p to ~p\n", [Socket, Pid]),
- io:format(" rep=~p: ~p\n", [State#state.rep_buf_size, State#state.reply_buffer]),
- gen_tcp:controlling_process(Socket, Pid),
- catch Pid ! {permission, Socket, Body},
- {noreply, State};
-
handle_info(Info, State) ->
io:format("Unknown message recvd for ~1000.p:~1000.p -> ~p~n",
[State#state.host, State#state.port, Info]),