File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -254,6 +254,11 @@ namespace NKikimr::NGRpcProxy::V1 {
254
254
passwordHash = MD5::Data (pair.second );
255
255
passwordHash.to_lower ();
256
256
hasPassword = true ;
257
+ } else {
258
+ TString error = TStringBuilder () << " Consumer attribute " << pair.first << " is not supported" ;
259
+ if (error) {
260
+ return TMsgPqCodes (error, Ydb::PersQueue::ErrorCode::INVALID_ARGUMENT);
261
+ }
257
262
}
258
263
}
259
264
if (serviceType.empty ()) {
@@ -543,7 +548,7 @@ namespace NKikimr::NGRpcProxy::V1 {
543
548
return Ydb::StatusIds::BAD_REQUEST;
544
549
}
545
550
}
546
- } else if (pair.first == " _message_group_seqno_retention_period_ms" ) {
551
+ } else if (pair.first == " _message_group_seqno_retention_period_ms" ) {
547
552
partConfig->SetSourceIdLifetimeSeconds (NKikimrPQ::TPartitionConfig ().GetSourceIdLifetimeSeconds ());
548
553
if (!pair.second .empty ()) {
549
554
try {
You can’t perform that action at this time.
0 commit comments