Code Monkey home page Code Monkey logo

ib's People

Contributors

benalexau avatar creack avatar dimfeld avatar dsouzae avatar haohui avatar indrekj avatar joelreymont avatar nothize avatar p-lewis avatar typeless avatar uwe avatar

Watchers

 avatar  avatar

Forkers

dimfeld

ib's Issues

TestInstrumentManager result in "Waited 5 seconds for reply channel 0xc42006d200"

Procedure:

GATEWAY_URL=localhost:4002 go test -run TestInstrumentManager -v

Expected result:

Test should complete and success.

Actual result (the test is not end and the message is showed repeatedly):

=== RUN TestInstrumentManager
2017/06/13 22:45:56 Waited 5 seconds for reply channel 0xc42006d200

Findings:

  1. 8a68c49 tries to fix the infinity loop when the errors channel is being closed. (Reading from a closed channel will return immediately with ok as false, so it prevents other cases from being processed)
  2. However, the defer block will only execute after errors being set to nil and reading from a nil channel will wait forever thus the EngineState observer is never unsubscribed from the Engine which cause infinity loop in the defer block of Engine's main loop.

Solution:

  1. Setting nil to the closed channel errors to prevent the case from preempting the select block is correct, though can be done right after close(errors).
  2. Reading from errors from the defer block works if errors is not nil, so a better alternative is to add a new channel to synchronise between the preLoop goroutine and defer block.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.