Skip to content
This repository has been archived by the owner on Oct 10, 2018. It is now read-only.

Deadloop fixing #56

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Nov 8, 2017

  1. fix the typo

    ccic committed Nov 8, 2017
    Configuration menu
    Copy the full SHA
    ba2ef0e View commit details
    Browse the repository at this point in the history
  2. fix the deadloop issue and support for custom timeout

    testDone is scheduled every 500ms, but the termination
    check is counter === number, so, there is high possibility
    that after every 500ms, the counter is bigger than number,
    then testDone will go to deadloop.
    
    Another issue is socket.io does not support to specify
    a custom timeout value, the default value is 20000ms.
    ccic committed Nov 8, 2017
    Configuration menu
    Copy the full SHA
    15ea53e View commit details
    Browse the repository at this point in the history