Skip to content

Commit 153990f

Browse files
authored
AGE-222: remove connection string from svc list table (#71)
1 parent 5529526 commit 153990f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

internal/tiger/cmd/service.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@ func outputServiceTable(service OutputService, output io.Writer) error {
712712
// outputServicesTable outputs services in a formatted table using tablewriter
713713
func outputServicesTable(services []OutputService, output io.Writer) error {
714714
table := tablewriter.NewWriter(output)
715-
table.Header("SERVICE ID", "NAME", "STATUS", "TYPE", "REGION", "CREATED", "CONNECTION STRING")
715+
table.Header("SERVICE ID", "NAME", "STATUS", "TYPE", "REGION", "CREATED")
716716

717717
for _, service := range services {
718718
table.Append(
@@ -722,7 +722,6 @@ func outputServicesTable(services []OutputService, output io.Writer) error {
722722
util.DerefStr(service.ServiceType),
723723
util.Deref(service.RegionCode),
724724
formatTimePtr(service.Created),
725-
service.ConnectionString,
726725
)
727726
}
728727

0 commit comments

Comments
 (0)