Skip to content

Commit aa089a3

Browse files
committed
fix
1 parent 435465f commit aa089a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ydb/core/persqueue/ut/partition_ut.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1241,7 +1241,7 @@ void TPartitionFixture::TestWriteSubDomainOutOfSpace_DeadlineWork(bool ignoreQuo
12411241
TString data = "data for write";
12421242

12431243
// First message will be processed because used storage 0 and limit 0. That is, the limit is not exceeded.
1244-
SendWrite(++cookie, messageNo, ownerCookie, (messageNo + 1) * 100, data);
1244+
SendWrite(++cookie, messageNo, ownerCookie, (messageNo + 1) * 100, data, ignoreQuotaDeadline);
12451245
messageNo++;
12461246

12471247
WaitKeyValueRequest(kvCookie); // the partition saves the TEvPQ::TEvWrite event
@@ -1253,7 +1253,7 @@ void TPartitionFixture::TestWriteSubDomainOutOfSpace_DeadlineWork(bool ignoreQuo
12531253
}
12541254

12551255
// Second message will not be processed because the limit is exceeded.
1256-
SendWrite(++cookie, messageNo, ownerCookie, (messageNo + 1) * 100, data);
1256+
SendWrite(++cookie, messageNo, ownerCookie, (messageNo + 1) * 100, data, ignoreQuotaDeadline);
12571257
messageNo++;
12581258

12591259
{

0 commit comments

Comments
 (0)