Skip to content

Commit

Permalink
cleanup tests output (#4910)
Browse files Browse the repository at this point in the history
  • Loading branch information
adameat authored May 28, 2024
1 parent 66cb6b8 commit b3c26e4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions ydb/core/blobstorage/nodewarden/node_warden_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ bool NKikimr::ObtainTenantKey(TEncryptionKey *key, const NKikimrProto::TKeyConfi
auto &record = keyConfig.GetKeys(0);
return ObtainKey(key, record);
} else {
Cerr << "No Keys in KeyConfig! Encrypted group DsProxies will not start" << Endl;
STLOG(PRI_INFO, BS_NODE, NW66, "No Keys in KeyConfig! Encrypted group DsProxies will not start");
return false;
}
}
Expand All @@ -741,7 +741,7 @@ bool NKikimr::ObtainPDiskKey(NPDisk::TMainKey *mainKey, const NKikimrProto::TKey

ui32 keysSize = keyConfig.KeysSize();
if (!keysSize) {
Cerr << "No Keys in PDiskKeyConfig! Encrypted pdisks will not start" << Endl;
STLOG(PRI_INFO, BS_NODE, NW69, "No Keys in PDiskKeyConfig! Encrypted pdisks will not start");
mainKey->ErrorReason = "Empty PDiskKeyConfig";
mainKey->Keys = { NPDisk::YdbDefaultPDiskSequence };
mainKey->IsInitialized = true;
Expand Down
2 changes: 1 addition & 1 deletion ydb/core/kqp/proxy_service/kqp_proxy_service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ class TKqpProxyService : public TActorBootstrapped<TKqpProxyService> {
SendWhiteboardRequest();

if (AppData()->TenantName.empty() || !SelfDataCenterId) {
KQP_PROXY_LOG_E("Cannot start publishing usage, tenants: " << AppData()->TenantName << ", " << SelfDataCenterId.value_or("empty"));
KQP_PROXY_LOG_I("Cannot start publishing usage, tenants: " << AppData()->TenantName << ", " << SelfDataCenterId.value_or("empty"));
return;
}

Expand Down
2 changes: 1 addition & 1 deletion ydb/core/kqp/rm_service/kqp_rm_service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@ class TKqpResourceManagerActor : public TActorBootstrapped<TKqpResourceManagerAc
void HandleWork(TEvKqp::TEvKqpProxyPublishRequest::TPtr&) {
SendWhiteboardRequest();
if (AppData()->TenantName.empty() || !SelfDataCenterId) {
LOG_E("Cannot start publishing usage for kqp_proxy, tenants: " << AppData()->TenantName << ", " << SelfDataCenterId.value_or("empty"));
LOG_I("Cannot start publishing usage for kqp_proxy, tenants: " << AppData()->TenantName << ", " << SelfDataCenterId.value_or("empty"));
return;
}
PublishResourceUsage("kqp_proxy");
Expand Down
2 changes: 0 additions & 2 deletions ydb/core/testlib/test_client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -931,8 +931,6 @@ namespace Tests {
IActor* proxy = BusServer->CreateProxy();
TActorId proxyId = Runtime->Register(proxy, nodeIdx, Runtime->GetAppData(nodeIdx).SystemPoolId, TMailboxType::Revolving, 0);
Runtime->RegisterService(NMsgBusProxy::CreateMsgBusProxyId(), proxyId, nodeIdx);

Cerr << "NMsgBusProxy registered on Port " << Settings->Port << " GrpcPort " << Settings->GrpcPort << Endl;
}
}
{
Expand Down

0 comments on commit b3c26e4

Please sign in to comment.