This is an automated email from the ASF dual-hosted git repository. zrhoffman pushed a commit to branch 6.0.x in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git
commit 1f210d5ed80efcdf5542b61482e599900c89856b Author: Evan Zelkowitz <[email protected]> AuthorDate: Fri Aug 20 17:17:31 2021 -0600 Fix wording for package uninstall (#6131) (cherry picked from commit 02bc598cfd6185a24fa47abce7aa7b443d3a47aa) --- cache-config/t3c-apply/torequest/torequest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cache-config/t3c-apply/torequest/torequest.go b/cache-config/t3c-apply/torequest/torequest.go index e3b4be9..7763fbb 100644 --- a/cache-config/t3c-apply/torequest/torequest.go +++ b/cache-config/t3c-apply/torequest/torequest.go @@ -953,7 +953,7 @@ func (r *TrafficOpsReq) ProcessPackages() error { // uninstall packages marked for removal if len(install) > 0 && r.Cfg.InstallPackages { for jj := range uninstall { - log.Infof("Uninstalling %s\n", install[jj]) + log.Infof("Uninstalling %s\n", uninstall[jj]) r, err := util.PackageAction("remove", uninstall[jj]) if err != nil { return errors.New("Unable to uninstall " + uninstall[jj] + " : " + err.Error())
