Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nodejs/node-v0.x-archive
base: c0d81f909966
Choose a base ref
...
head repository: nodejs/node-v0.x-archive
compare: 8405fde44dcc
Choose a head ref
  • 3 commits
  • 1 file changed
  • 1 contributor

Commits on Jan 10, 2014

  1. test: race condition in test-cluster-disconnect

    The test was not waiting for all the worker-created sockets
    to be listening before calling cluster.disconnect().
    As a result, the channels with the workers could get closed
    before all the socket handles had been passed to them, leading
    to various errors.
    orangemocha committed Jan 10, 2014
    Copy the full SHA
    476a687 View commit details
    Browse the repository at this point in the history
  2. lib: raise 'disconnect' event on channel close

    When a child process closes the channel to the parent, we should
    call _disconnect(), which raises the 'disconnect' event immediately,
    rather than disconnect(), which can potentially be deferred if
    there is a handle queue on the channel. A deferred disconnect would
    never be processed because the other side is gone and the channel
    will never be drained.
    orangemocha committed Jan 10, 2014
    Copy the full SHA
    7d0e06c View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2014

  1. Copy the full SHA
    8405fde View commit details
    Browse the repository at this point in the history