@@ -28,6 +28,7 @@ const static ui32 PQ_DEFAULT_NODE_COUNT = 2;
28
28
inline Tests::TServerSettings PQSettings (ui16 port = 0 , ui32 nodesCount = PQ_DEFAULT_NODE_COUNT, const TString& yql_timeout = " 10" , const THolder<TTempFileHandle>& netDataFile = nullptr ) {
29
29
NKikimrPQ::TPQConfig pqConfig;
30
30
NKikimrProto::TAuthConfig authConfig;
31
+ authConfig.SetUseBuiltinDomain (true );
31
32
authConfig.SetUseBlackBox (false );
32
33
authConfig.SetUseAccessService (false );
33
34
authConfig.SetUseAccessServiceTLS (false );
@@ -542,7 +543,7 @@ class TFlatMsgBusPQClient : public NFlatTests::TFlatMsgBusClient {
542
543
auto driverConfig = NYdb::TDriverConfig ()
543
544
.SetEndpoint (endpoint)
544
545
.SetLog (CreateLogBackend (" cerr" , ELogPriority::TLOG_DEBUG));
545
- if (databaseName)
546
+ if (databaseName)
546
547
driverConfig.SetDatabase (*databaseName);
547
548
Driver.Reset (MakeHolder<NYdb::TDriver>(driverConfig));
548
549
@@ -791,7 +792,7 @@ class TFlatMsgBusPQClient : public NFlatTests::TFlatMsgBusClient {
791
792
{
792
793
auto response = RequestTopicMetadata (name);
793
794
794
- if (response.GetErrorCode () != (ui32)NPersQueue::NErrorCode::OK)
795
+ if (response.GetErrorCode () != (ui32)NPersQueue::NErrorCode::OK)
795
796
return 0 ;
796
797
797
798
UNIT_ASSERT (response.HasMetaResponse ());
@@ -1081,7 +1082,7 @@ class TFlatMsgBusPQClient : public NFlatTests::TFlatMsgBusClient {
1081
1082
Cerr << " ChooseProxy response:\n " << PrintToString (response) << Endl;
1082
1083
1083
1084
UNIT_ASSERT_C (status.ok (), status.error_message ());
1084
-
1085
+
1085
1086
UNIT_ASSERT_VALUES_EQUAL_C ((NMsgBusProxy::EResponseStatus)response.GetStatus (), NMsgBusProxy::MSTATUS_OK, " proxy failure" );
1086
1087
}
1087
1088
@@ -1096,7 +1097,7 @@ class TFlatMsgBusPQClient : public NFlatTests::TFlatMsgBusClient {
1096
1097
TString cookie = GetOwnership ({writeRequest.Topic , writeRequest.Partition }, expectedOwnerStatus);
1097
1098
1098
1099
THolder<NMsgBusProxy::TBusPersQueue> request = writeRequest.GetRequest (data, cookie);
1099
- if (!ticket.empty ())
1100
+ if (!ticket.empty ())
1100
1101
request.Get ()->Record .SetTicket (ticket);
1101
1102
1102
1103
auto response = CallPersQueueGRPC (request->Record );
0 commit comments