Skip to content

Commit

Permalink
fix broken filestore build: Follower -> Shard (#2260)
Browse files Browse the repository at this point in the history
  • Loading branch information
debnatkh committed Oct 16, 2024
1 parent be512a1 commit bbabd9b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cloud/filestore/libs/storage/tablet/tablet_database.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2035,8 +2035,8 @@ bool TIndexTabletDatabaseProxy::ReadNodeRef(
.NodeRefsRow = {
.CommitId = ref->MinCommitId,
.ChildId = ref->ChildNodeId,
.FollowerId = ref->FollowerId,
.FollowerName = ref->FollowerName}});
.ShardId = ref->ShardId,
.ShardName = ref->ShardName}});
}
return result;
}
Expand All @@ -2060,8 +2060,8 @@ bool TIndexTabletDatabaseProxy::ReadNodeRefs(
.NodeRefsRow = {
.CommitId = ref.MinCommitId,
.ChildId = ref.ChildNodeId,
.FollowerId = ref.FollowerId,
.FollowerName = ref.FollowerName}});
.ShardId = ref.ShardId,
.ShardName = ref.ShardName}});
}
}
return result;
Expand Down

0 comments on commit bbabd9b

Please sign in to comment.