Skip to content

Commit

Permalink
fix: correct topology HostID key and value
Browse files Browse the repository at this point in the history
  • Loading branch information
hrak committed Jul 1, 2024
1 parent b84309a commit f19f684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/driver/topology.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func (t Topology) ToCSI() *csi.Topology {
segments := make(map[string]string)
segments[ZoneKey] = t.ZoneID
if t.HostID != "" {
segments[ZoneKey] = t.ZoneID
segments[HostKey] = t.HostID
}

return &csi.Topology{
Expand Down

0 comments on commit f19f684

Please sign in to comment.