Skip to content

Commit

Permalink
Merge branch 'release/v1.1.12'
Browse files Browse the repository at this point in the history
  • Loading branch information
i-vovk committed Sep 24, 2021
2 parents f126e40 + 190a904 commit aa9303a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ if [[ "$1" == "test" ]] ; then
build_testing "build-tsan" "Tsan"
build_testing "build-asan" "Asan"
build_testing "build-ubsan" "Ubsan"
build_testing "build" "Debug"

elif [[ "$1" == "coverage" ]] ; then
build_testing "build" "Debug"
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 1.1.12 (2021-09-21)

### Bug Fixes

* connector::base_connector: fix resolving thread spooling if attemts failed

### Misc

* Fix github 'lint' action on PRs


## 1.1.11 (2021-08-20)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.0 FATAL_ERROR)

set(STREAMCLIENT_VERSION_MAJOR "1")
set(STREAMCLIENT_VERSION_MINOR "1")
set(STREAMCLIENT_VERSION_RELEASE "11")
set(STREAMCLIENT_VERSION_RELEASE "12")
set(STREAMCLIENT_SUMMARY "C++ library")
set(STREAMCLIENT_REPOSITORY_URL "https://github.com/TinkoffCreditSystems/stream-client")
set(STREAMCLIENT_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE")
Expand Down
1 change: 1 addition & 0 deletions include/stream-client/connector/impl/connector.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ void base_connector<Stream>::resolve_routine()
resolver_endpoint_iterator_type new_endpoints = resolver_.resolve(resolve_ec);
set_resolve_error(resolve_ec);
if (resolve_ec) {
std::this_thread::sleep_for(std::chrono::milliseconds(50));
continue;
}

Expand Down

0 comments on commit aa9303a

Please sign in to comment.