-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
t/memcached test fails occasionally in Travis CI #224
Comments
Related/duplicate #50 |
Ah, right... I saw that, but I didn't get past the title since I was mainly concerned with t/memcached instead t/cycle. Lots of good discussion there already. |
Ok, how about having memcached bind to port 0 and then using |
Actually, it appears the problem isn't with the memcached port, but in starting up gearmand: gearmand/tests/memcached_test.cc Line 151 in c343b3b
|
Indeed, but in the line 119 gearmand/tests/memcached_test.cc Line 119 in c343b3b
|
The
t/memcached
fails in Travis CI sometimes. I figured we needed an issue to track it.When the failure happens, the following message appears in test-suite.log:
What causes it?
A race condition with libtest's
get_free_port()
, right? So the port becomes busy in between the call toget_free_port()
and when thet/memcached
uses it, presumably.Possible solutions
The text was updated successfully, but these errors were encountered: