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: 000fd63d592b
Choose a base ref
...
head repository: nodejs/node-v0.x-archive
compare: a1fc0fc23a42
Choose a head ref
  • 6 commits
  • 49 files changed
  • 4 contributors

Commits on Feb 21, 2014

  1. debugger: don't set the repl.prompt string

    It wasn't doing anything, and actually due to
    3ae0b17, it was causing
    the readline `prompt()` function to be overwritten
    which throws an error in the REPL shortly after.
    TooTallNate authored and tjfontaine committed Feb 21, 2014
    Copy the full SHA
    e746bbd View commit details
    Browse the repository at this point in the history
  2. src: remove node_isolate from source

    fix #6899
    indutny committed Feb 21, 2014
    Copy the full SHA
    75adde0 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    dbae8b5 View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2014

  1. test: backoff client connection rates

    We were being very aggressive in our connection creations, resulting
    in the pipeline flood detection to drop us. Relax how fast we're
    creating these connections so the gc can run all its tests.
    tjfontaine committed Feb 24, 2014
    Copy the full SHA
    af14183 View commit details
    Browse the repository at this point in the history
  2. src: node.cc use isolate->ThrowException

    Environment doesn't have ThrowException, we meant isolate here.
    
    Introduced in commit
    75adde0.
    orangemocha authored and tjfontaine committed Feb 24, 2014
    Copy the full SHA
    440b9e2 View commit details
    Browse the repository at this point in the history
  3. net: fix listening on FDs on Windows

    With 3da36fe, I had intended to make
    createServerHandle always listen to the handle on Windows.
    Unfortunately, I had missed the code path we take when a file
    descriptor is passed in.
    
    This fixes test-net-listen-fd0.js on Windows.
    orangemocha committed Feb 24, 2014
    Copy the full SHA
    a1fc0fc View commit details
    Browse the repository at this point in the history