Skip to content

Commit 9c72ce7

Browse files
committed
set routed values to false
1 parent 091dadf commit 9c72ce7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

internal/cmd/beta/network/describe/describe.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ func outputResult(p *print.Printer, outputFormat string, network *iaas.Network)
152152
table.AddSeparator()
153153
}
154154

155-
routed := true
155+
routed := false
156156
if network.Routed != nil {
157157
routed = *network.Routed
158158
}

internal/cmd/beta/network/list/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ func outputResult(p *print.Printer, outputFormat string, networks []iaas.Network
159159
publicIp = *network.PublicIp
160160
}
161161

162-
routed := true
162+
routed := false
163163
if network.Routed != nil {
164164
routed = *network.Routed
165165
}

0 commit comments

Comments
 (0)