Skip to content

Commit f6bd846

Browse files
committed
Set lower bound to yt.ErasureCodecCpu to 0.1
commit_hash:2d03cb60201a43cc9d479f4ea918121a218ab2fb
1 parent 52b880c commit f6bd846

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

yt/yql/providers/yt/common/yql_yt_settings.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,8 @@ TYtConfiguration::TYtConfiguration(TTypeAnnotationContext& typeCtx)
199199
REGISTER_SETTING(*this, ScriptCpu).Lower(1.0).GlobalOnly();
200200
REGISTER_SETTING(*this, PythonCpu).Lower(1.0).GlobalOnly();
201201
REGISTER_SETTING(*this, JavascriptCpu).Lower(1.0).GlobalOnly();
202-
REGISTER_SETTING(*this, ErasureCodecCpu).Lower(1.0);
203-
REGISTER_SETTING(*this, ErasureCodecCpuForDq).Lower(1.0);
202+
REGISTER_SETTING(*this, ErasureCodecCpu).Lower(0.1);
203+
REGISTER_SETTING(*this, ErasureCodecCpuForDq).Lower(0.1);
204204

205205
REGISTER_SETTING(*this, Owners)
206206
.NonEmpty()

0 commit comments

Comments
 (0)