-
Notifications
You must be signed in to change notification settings - Fork 24
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
Timeout Issues on Travis #121
Comments
Travis network could be a reason. It might be worth getting in contact with them to get them to weigh in on the issue. If they throttle network that might explain things. And to be honest, if I was running such a service I probably would throttle. This could just as easily be a DDOS machine. I don't think we use a lot of bandwidth after I switched to prefer HEAD requests, but limiting the amount of connections or slowing down the connection instantiation might very quickly accumulate to large delays. |
@Munter I'll look into reaching out to someone from Travis (let me know if you have any suggestions). I'll also create a branch/pr on the docs repo so we can test, and hopefully resolve, the issue. |
Created webpack/webpack.js.org#1582 so we can try to resolve this issue. It is hard to replicate at a times but hopefully we'll be able to so we can address it before adding |
@Munter thanks, sent them a message. Will add an update once I hear back. |
@Munter they got back to me with the following questions:
I'm going to add you to the thread as well. It does seem like these things would help but may require The only issue is that we pass the output from |
Determined this isn't really an issue with |
Looks like the missing default timeout of teepee might be at fault. Reopening. |
@skipjack Could you maybe give the |
Yes will do, thanks! |
@Munter not sure if you saw the comment on webpack/webpack.js.org#1582 but that branch didn't fix the issue unfortunately. It still hangs for over 10 min on certain links. |
* fix/defaultTimeout: Set default timeout for teepee. Refs #121
Fixed by properly unloading assets while traversing the graph. Will be out in v4.x |
We’ve been having some issues when running
hyperlink
on Travis for the webpack.js.org repository. Essentially, our build and other tests run but whenhyperlink
(thelint:links
npm script) runs, it takes longer than 10 minutes and travis terminates the build. This issue has been somewhat inconsistent, but in the last few days has gotten worse. The odd thing is that locally it runs much faster (~5 min).One of our contributors (@pierreneter) dug into it a bit and came to the conclusion that it’s probably the Travis' network that's slowing things down. I guess my questions are just…
I tried
travis_wait
by the way, which I guess might be one solution, but I think we’d have to rework our.travis.yaml
file a bit to get that to work.The text was updated successfully, but these errors were encountered: