Skip to content
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

support larger cluster #73

Merged
merged 5 commits into from
Oct 22, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
include missing packages, disable recovery tests for now
  • Loading branch information
Chen Qin committed Oct 19, 2018
commit cc5e1589b270fb2cb4607dcdc68a18d0ab296ff0
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ before_install:
- source ${TRAVIS}/travis_setup_env.sh

install:
- pip install --user cpplint pylint kubernetes
- pip install --user cpplint pylint kubernetes urllib3

script: scripts/travis_script.sh

2 changes: 1 addition & 1 deletion src/allreduce_base.cc
Original file line number Diff line number Diff line change
@@ -210,7 +210,7 @@ utils::TCPSocket AllreduceBase::ConnectTracker(void) const {
#ifdef _MSC_VER
Sleep(1);
#else
sleep(1);
sleep(retry << 1);
#endif
continue;
}
Loading