Skip to content

Commit 181bda7

Browse files
asan fix
1 parent 54e5a53 commit 181bda7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ydb/core/viewer/viewer_ut.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1123,7 +1123,7 @@ Y_UNIT_TEST_SUITE(Viewer) {
11231123
auto settings = TServerSettings(port);
11241124
settings.InitKikimrRunConfig()
11251125
.SetNodeCount(1)
1126-
.SetUseRealThreads(true)
1126+
.SetUseRealThreads(false)
11271127
.SetDomainName("Root")
11281128
.SetMonitoringPortOffset(monPort, true);
11291129

@@ -1173,7 +1173,7 @@ Y_UNIT_TEST_SUITE(Viewer) {
11731173
auto settings = TServerSettings(port);
11741174
settings.InitKikimrRunConfig()
11751175
.SetNodeCount(1)
1176-
.SetUseRealThreads(true)
1176+
.SetUseRealThreads(false)
11771177
.SetDomainName("Root")
11781178
.SetMonitoringPortOffset(monPort, true); // authorization is implemented only in async mon
11791179

@@ -1210,7 +1210,7 @@ Y_UNIT_TEST_SUITE(Viewer) {
12101210
"database": "/Root",
12111211
"action": "execute-script",
12121212
"syntax": "yql_v1",
1213-
"stats": "profile"
1213+
"stats": "none"
12141214
})json";
12151215
const TKeepAliveHttpClient::THttpCode statusCode = httpClient.DoPost("/viewer/json/query?timeout=600000&base64=false&schema=modern", requestBody, &responseStream, headers);
12161216
const TString response = responseStream.ReadAll();

0 commit comments

Comments
 (0)