diff options
| -rw-r--r-- | ydb/core/grpc_services/rpc_rate_limiter_api.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ydb/core/grpc_services/rpc_rate_limiter_api.cpp b/ydb/core/grpc_services/rpc_rate_limiter_api.cpp index 5579be8bdb3..c59e0f7aed6 100644 --- a/ydb/core/grpc_services/rpc_rate_limiter_api.cpp +++ b/ydb/core/grpc_services/rpc_rate_limiter_api.cpp @@ -54,7 +54,10 @@ public: if (!TrustedZone && !GetCoordinationNodePath().StartsWith(databaseName)) { status = StatusIds::BAD_REQUEST; - issues.AddIssue("Coordination node path not belong to current database."); + issues.AddIssue(TStringBuilder() + << "Coordination node path: " << GetCoordinationNodePath() + << " does not belong to current database: " << databaseName + << "."); return false; } return true; |
