Skip to content

Commit

Permalink
license: remove "Terminates At" from license get command
Browse files Browse the repository at this point in the history
The `Terminates At` field can't be removed from the struct for backwards
compatibility reasons, but there's no purpose to it anymore so we shouldn't be
showing it to end users of the command.
  • Loading branch information
tgross committed Apr 28, 2021
1 parent 3e6c3c6 commit 647d5b2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion command/license.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ func outputLicenseInfo(ui cli.Ui, lic *api.License, expired bool) {
fmt.Sprintf("Customer ID|%s", lic.CustomerID),
fmt.Sprintf("Issued At|%s", lic.IssueTime),
expStr,
fmt.Sprintf("Terminates At|%s", lic.TerminationTime.String()),
fmt.Sprintf("Datacenter|%s", lic.InstallationID),
}
ui.Output(formatKV(output))
Expand Down

0 comments on commit 647d5b2

Please sign in to comment.