Created
October 23, 2012 21:42
-
-
Save rzezeski/3941804 to your computer and use it in GitHub Desktop.
lmao erlang:decode_packet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17:39:48 <{mochiweb_acceptor,init,3}> {erlang,decode_packet, | |
[httph, | |
<<"x-riak-meta-user_s: foo\r\nx-riak-meta-description_t: bar\r\nContent-Length: 153426\r\nExpect: 100-continue\r\n\r\n">>, | |
[]]} | |
17:39:48 <{mochiweb_acceptor,init,3}> {erlang,decode_packet,3} -> {ok, | |
{http_header, | |
0, | |
"X-Riak-Meta-User_s", | |
undefined, | |
"foo"}, | |
<<"x-riak-meta-description_t: bar\r\nContent-Length: 153426\r\nExpect: 100-continue\r\n\r\n">>} | |
17:46:31 <{mochiweb_acceptor,init,3}> {erlang,decode_packet, [19/1902] | |
[httph, | |
<<"x-riak-meta-description_t: bar\r\nContent-Length: 153426\r\nExpect: 100-continue\r\n\r\n">>, | |
[]]} | |
17:46:31 <{mochiweb_acceptor,init,3}> {erlang,decode_packet,3} -> {ok, | |
{http_header, | |
0, | |
"x-riak-meta-description_t", | |
undefined, | |
"bar"}, | |
<<"Content-Length: 153426\r\nExpect: 100-continue\r\n\r\n">>} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Notice how
x-riak-meta-user_s
becomesX-Riak-Meta-User_s
andx-riak-meta-description_t
is left as-is.