Skip to content

Commit 16c4b26

Browse files
authored
Fix pgwire auth (#9594)
1 parent 7eb941d commit 16c4b26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/core/local_pgwire/local_pgwire_auth_actor.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class TPgYdbAuthActor : public NActors::TActorBootstrapped<TPgYdbAuthActor> {
104104
const auto& entry = navigate->ResultSet.front();
105105

106106
for (const auto& attr : entry.Attributes) {
107-
if (attr.first == "folderId") FolderId = attr.second;
107+
if (attr.first == "folder_id") FolderId = attr.second;
108108
else if (attr.first == "database_id") DatabaseId = attr.second;
109109
}
110110

0 commit comments

Comments
 (0)