Skip to content

Commit 6c22e9c

Browse files
authored
Fix pgwire auth (ydb-platform#9595)
1 parent eb90b5d commit 6c22e9c

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

Lines changed: 1 addition & 1 deletion
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)