Skip to content

Commit 0ee9f4a

Browse files
committed
Fixed failed to create default pool issues
1 parent 3ca0672 commit 0ee9f4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/core/kqp/workload_service/actors/scheme_actors.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class TPoolResolverActor : public TActorBootstrapped<TPoolResolverActor> {
8080
void Handle(TEvPrivate::TEvCreatePoolResponse::TPtr& ev) {
8181
if (ev->Get()->Status != Ydb::StatusIds::SUCCESS) {
8282
LOG_E("Failed to create default pool " << ev->Get()->Status << ", issues: " << ev->Get()->Issues.ToOneLineString());
83-
Reply(ev->Get()->Status, GroupIssues(ev->Get()->Issues, "Failed to create default pool"));
83+
Reply(ev->Get()->Status, GroupIssues(ev->Get()->Issues, TStringBuilder() << "Failed to create default pool in database " << Event->Get()->DatabaseId));
8484
return;
8585
}
8686

0 commit comments

Comments
 (0)