From 647d5b22f9c21848b87a4a29b765e39369054eab Mon Sep 17 00:00:00 2001 From: Tim Gross Date: Wed, 28 Apr 2021 11:41:35 -0400 Subject: [PATCH] license: remove "Terminates At" from license get command 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. --- command/license.go | 1 - 1 file changed, 1 deletion(-) diff --git a/command/license.go b/command/license.go index ad67214c41f..d9b2666c236 100644 --- a/command/license.go +++ b/command/license.go @@ -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))