~ubuntu-branches/ubuntu/saucy/rabbitmq-server/saucy

« back to all changes in this revision

Viewing changes to src/rabbit_channel_sup.erl

  • Committer: Package Import Robot
  • Author(s): Emile Joubert
  • Date: 2012-11-19 11:42:31 UTC
  • mfrom: (0.2.18) (0.1.32 sid)
  • Revision ID: package-import@ubuntu.com-20121119114231-hvapkn4akng09etr
Tags: 3.0.0-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
 
84
84
child_specs({tcp, Sock, Channel, FrameMax, ReaderPid, Protocol}) ->
85
85
    [{writer, {rabbit_writer, start_link,
86
 
               [Sock, Channel, FrameMax, Protocol, ReaderPid]},
 
86
               [Sock, Channel, FrameMax, Protocol, ReaderPid, true]},
87
87
      intrinsic, ?MAX_WAIT, worker, [rabbit_writer]} | child_specs(direct)];
88
88
child_specs(direct) ->
89
89
    [{limiter, {rabbit_limiter, start_link, []},