We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bb6c6a commit 6f48846Copy full SHA for 6f48846
ydb/core/driver_lib/run/kikimr_services_initializers.cpp
@@ -256,7 +256,7 @@ static TCpuMask ParseAffinity(const TConfig& cfg) {
256
if (cfg.GetCpuList()) {
257
result = TCpuMask(cfg.GetCpuList());
258
} else if (cfg.GetX().size() > 0) {
259
- result = TCpuMask(cfg.GetX().begin(), cfg.GetX().size());
+ result = TCpuMask(cfg.GetX().data(), cfg.GetX().size());
260
} else { // use all processors
261
TAffinity available;
262
available.Current();
0 commit comments