agent: clarify why we Kill still

This commit is contained in:
Mitchell Hashimoto 2018-05-03 22:13:18 -07:00
parent 1cb9046ad5
commit 7bb13246a8
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 2 additions and 1 deletions

View File

@ -1294,7 +1294,8 @@ func (a *Agent) ShutdownAgent() error {
// Stop the proxy manager
// NOTE(mitchellh): we use Kill for now to kill the processes since
// there isn't a clean way to cleanup the managed proxies. This is coming
// the local state isn't snapshotting meaning the proxy tokens are
// regenerated each time forcing the processes to restart anyways.
if err := a.proxyManager.Kill(); err != nil {
a.logger.Printf("[WARN] agent: error shutting down proxy manager: %s", err)
}