Skip to content

Commit 0fb8045

Browse files
authoredJan 27, 2022
Merge pull request #230 from oberstet/session_wrong_future
Session wrong future
2 parents 7816866 + ac4803e commit 0fb8045

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed
 

‎.github/workflows/ci-linux.yaml

+10-5
Original file line numberDiff line numberDiff line change
@@ -47,22 +47,27 @@ jobs:
4747
with:
4848
python-version: 3.8
4949

50+
- name: Set env vars
51+
run: |
52+
echo "CC=${{ matrix.compiler }}-${{ matrix.version }}" >> $GITHUB_ENV
53+
if [ "${{ matrix.compiler }}" == "clang" ]; then
54+
echo "CXX=clang++-${{ matrix.version }}" >> $GITHUB_ENV
55+
else
56+
echo "CXX=g++-${{ matrix.version }}" >> $GITHUB_ENV
57+
fi
58+
5059
- name: Install
5160
run: |
52-
python -m pip install cmake==3.17.3 conan==1.28.1 --upgrade
61+
python -m pip install cmake==3.22.2 conan==1.44.1 --upgrade
5362
5463
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
5564
sudo add-apt-repository 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-10 main' -y
5665
sudo apt update
5766
5867
if [ "${{ matrix.compiler }}" = "gcc" ]; then
5968
sudo apt-get install -y g++-${{ matrix.version }} g++-${{ matrix.version }}-multilib
60-
echo "::set-env name=CC::gcc-${{ matrix.version }}"
61-
echo "::set-env name=CXX::g++-${{ matrix.version }}"
6269
else
6370
sudo apt-get install -y clang-${{ matrix.version }} clang-tidy-${{ matrix.version }} g++-multilib
64-
echo "::set-env name=CC::clang-${{ matrix.version }}"
65-
echo "::set-env name=CXX::clang++-${{ matrix.version }}"
6671
fi
6772
6873
- name: Install dependencies (system)

‎.github/workflows/ci-windows.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- name: Install
4040
run: |
41-
python -m pip install cmake==3.17.3 conan==1.28.1 --upgrade
41+
python -m pip install cmake==3.22.2 conan==1.44.1 --upgrade
4242
conan profile new default --detect --force
4343
mkdir -p build && cd build
4444
conan install .. --build=missing -s arch=${{ matrix.conan_arch }} -s build_type=${{ matrix.type }}

‎autobahn/wamp_session.ipp

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ inline boost::future<void> wamp_session::stop()
121121
}
122122

123123
if (!m_transport) {
124-
m_session_start.set_exception(boost::copy_exception(no_transport_error()));
124+
m_session_stop.set_exception(boost::copy_exception(no_transport_error()));
125125
return;
126126
}
127127

0 commit comments

Comments
 (0)
Please sign in to comment.