Skip to content

Commit 17fe92f

Browse files
Wheels now target FESAPI 2.14.1.0
1 parent 64f9b7d commit 17fe92f

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/github-actions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,14 +76,14 @@ jobs:
7676
cmake --install .
7777
- name: FESAPI install
7878
run: |
79-
(New-Object System.Net.WebClient).DownloadFile("https://github.com/F2I-Consulting/fesapi/releases/download/v2.14.0.0/fesapi2_14_0_0-cpp-vs2019-x64.zip", "${{ runner.temp }}\fesapi.zip")
79+
(New-Object System.Net.WebClient).DownloadFile("https://github.com/F2I-Consulting/fesapi/releases/download/v2.14.1.0/fesapi2_14_1_0-cpp-vs2019-x64.zip", "${{ runner.temp }}\fesapi.zip")
8080
7z x ${{ runner.temp }}\fesapi.zip -o${{ runner.temp }}
8181
- name: CMake build and install
8282
run: |
8383
cd ${{ github.workspace }}/..
8484
mkdir build
8585
cd build
86-
cmake -G"Visual Studio 17 2022" -A x64 -T host=x64 -Wno-dev -Wno-deprecated -DBoost_INCLUDE_DIR=${{ runner.temp }}\boost-install -DAVRO_ROOT=${{ runner.temp }}/avro-cpp-install -DAVRO_USE_STATIC_LIBS=TRUE -DWITH_FESAPI=TRUE -DFESAPI_ROOT=${{ runner.temp }}/fesapi2_14_0_0-cpp-vs2019-x64 -DWITH_ETP_SSL=FALSE ${{ github.workspace }}
86+
cmake -G"Visual Studio 17 2022" -A x64 -T host=x64 -Wno-dev -Wno-deprecated -DBoost_INCLUDE_DIR=${{ runner.temp }}\boost-install -DAVRO_ROOT=${{ runner.temp }}/avro-cpp-install -DAVRO_USE_STATIC_LIBS=TRUE -DWITH_FESAPI=TRUE -DFESAPI_ROOT=${{ runner.temp }}/fesapi2_14_1_0-cpp-vs2019-x64 -DWITH_ETP_SSL=FALSE ${{ github.workspace }}
8787
cmake --build . --config Release -j2
8888
ubuntu-22:
8989
runs-on: ubuntu-22.04

cmake/pyproject.toml.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ keywords = [
4343
]
4444
requires-python = ">=3.8"
4545
dependencies = [
46-
'fesapi==2.14.0',
46+
'fesapi==2.14.1',
4747
]
4848

4949
[project.urls]

src/etp/AbstractSession.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ namespace ETP_NS
166166

167167
/**
168168
* Send a message to the server and block the thread until the answer of the server has been processed by the handlers
169-
* Please look at setTimeOut if you want to set the default timeout value which is 10 000 ms.
169+
* Please look at setTimeOut if you want to set the default timeout value which is 30 000 ms.
170170
*
171171
* @param message The ETP message to send
172172
* @param correlationId The ID of the message which this message is answering to.
@@ -263,7 +263,7 @@ namespace ETP_NS
263263

264264
/**
265265
* Send a message to the server and register a specific handler for the response and block the thread until the answer of the server has been processed by the handlers
266-
* Please look at setTimeOut if you want to set the default timeout value which is 10 000 ms.
266+
* Please look at setTimeOut if you want to set the default timeout value which is 30 000 ms.
267267
*
268268
* @param message The ETP message to send
269269
* @param correlationId The ID of the message which this message is answering to.

0 commit comments

Comments
 (0)