Skip to content

Commit

Permalink
fix: is_classic is missing from network details
Browse files Browse the repository at this point in the history
  • Loading branch information
Qiu Jian committed Jan 18, 2025
1 parent 54246dd commit a7c52a0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/compute/models/networks.go
Original file line number Diff line number Diff line change
Expand Up @@ -1235,6 +1235,9 @@ func (manager *SNetworkManager) FetchCustomizeColumns(
if network.IsExitNetwork() {
rows[i].Exit = true
}
if network.IsClassic() {
rows[i].IsClassic = true
}
rows[i].Ports = network.GetPorts()
rows[i].Routes = network.GetRoutes()
rows[i].Schedtags = GetSchedtagsDetailsToResourceV2(network, ctx)
Expand Down

0 comments on commit a7c52a0

Please sign in to comment.