Skip to content

Commit 58ba245

Browse files
authored
Merge pull request #34 from aliyun/sdk_3.3
Update VERSION 3.3.0c
2 parents cbcac53 + 53d1d33 commit 58ba245

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

nlsCppSdk/framework/common/Config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#endif
2424

2525
#ifndef NLS_SDK_VERSION_STR
26-
#define NLS_SDK_VERSION_STR "3.3.0b"
26+
#define NLS_SDK_VERSION_STR "3.3.0c"
2727
#endif
2828

2929
#endif // NLS_SDK_CONFIG_H

nlsCppSdk/framework/common/nlsClientImpl.cpp

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ NlsClientImpl::NlsClientImpl(bool sslInitial)
5454
_aiFamily(),
5555
_directHostIp(),
5656
_enableSysGetAddr(false),
57-
#ifdef ENABLE_PRECONNECTED_POO
57+
#ifdef ENABLE_PRECONNECTED_POOL
5858
_maxPreconnectedNumber(0),
5959
_preconnectedTimeoutMs(15000),
6060
_prerequestedTimeoutMs(75000),
@@ -160,6 +160,12 @@ void NlsClientImpl::setPreconnectedPool(unsigned int maxNumber,
160160
_maxPreconnectedNumber = maxNumber;
161161
_preconnectedTimeoutMs = timeoutMs >= 23000 ? 23000 : timeoutMs;
162162
_prerequestedTimeoutMs = requestTimeoutMs >= 8000 ? 8000 : requestTimeoutMs;
163+
164+
LOG_INFO(
165+
"Set Preconnected pool parameters -> max_num(%d/%d), "
166+
"preconnected_timeout(%d/%dms), prerequested_timeout(%d/%dms)",
167+
_maxPreconnectedNumber, maxNumber, _preconnectedTimeoutMs, timeoutMs,
168+
_prerequestedTimeoutMs, requestTimeoutMs);
163169
}
164170
#endif
165171

release.log

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,3 +202,6 @@
202202

203203
-----2025/04/30 Version:3.3.0b-----
204204
1: 流式TTS的单句合成模式增加SSML支持
205+
206+
-----2025/05/16 Version:3.3.0c-----
207+
1: 修复预处理功能未设置的情况下, 相关值错误导致OOM的问题

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.0-b
1+
3.3.0-c

0 commit comments

Comments
 (0)