Skip to content

Commit 2ef3c19

Browse files
authored
Fix typo leading to false VERIFY (#1220)
1 parent d84a0c9 commit 2ef3c19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/core/blobstorage/nodewarden/group_stat_aggregator.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ namespace NKikimr {
5353
Y_ABORT_UNLESS(vdiskServiceId.IsService());
5454
char x[12];
5555
TStringBuf serviceId = vdiskServiceId.ServiceId();
56-
Y_VERIFY_S(serviceId[0] == 'b' && serviceId[1] == 's' && serviceId[2] == 'v' && serviceId[3] != 'd',
56+
Y_VERIFY_S(serviceId[0] == 'b' && serviceId[1] == 's' && serviceId[2] == 'v' && serviceId[3] == 'd',
5757
"Invalid VDisk's, HexEncode(ServiceId)# " << HexEncode(serviceId));
5858
memcpy(x, serviceId.data(), serviceId.size());
5959
x[0] = 'b';

0 commit comments

Comments
 (0)