Skip to content

Commit

Permalink
Use of new version of nICEr (it allows more concurrent connections) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jcague authored Nov 8, 2018
1 parent 1de9ef8 commit a7016fb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions erizo/src/erizo/NicerConnection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,6 @@ void NicerConnection::start() {
async([] (std::shared_ptr<NicerConnection> this_ptr) {
this_ptr->startSync();
});
std::future_status status = start_promise_.get_future().wait_for(std::chrono::seconds(5));
if (status == std::future_status::timeout) {
ELOG_WARN("%s Start timed out", toLog());
}
}

void NicerConnection::startSync() {
Expand Down
2 changes: 1 addition & 1 deletion erizo/src/third_party/nicer.cmake
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
set(NICER_BUILD "${CMAKE_CURRENT_BINARY_DIR}/libdeps/nicer")
ExternalProject_Add(project_nicer
GIT_REPOSITORY "https://github.com/lynckia/nicer.git"
GIT_TAG "master"
GIT_TAG "1.2"
PREFIX ${NICER_BUILD}
CMAKE_ARGS -DCMAKE_INSTALL_PREFIX:PATH=${NICER_BUILD}
DOWNLOAD_DIR "${NICER_BUILD}/src"
Expand Down

0 comments on commit a7016fb

Please sign in to comment.