diff --git a/RELEASENOTES.md b/RELEASENOTES.md index e12c5c1e8..9692b30f0 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,13 +1,21 @@ Latest +============== +- Fix bug on windows agent (v2.2.103, v2.2.120.0) running into hung state with high volume of associations/runcommands +- Execute "pwsh" on linux when using runPowershellScript plugin + +2.2.136.0 =============== +NOTE: There is a known issue in this build that can cause Windows instances to stop processing commands and associations. The issue is resolved in build versions>2.2.136.0 - Various bug fixes. 2.2.120.0 =============== +NOTE: There is a known issue in this build that can cause Windows instances to stop processing commands and associations. The issue is resolved in build versions>2.2.136.0 - Various bug fixes. 2.2.103.0 =============== +NOTE: There is a known issue in this build that can cause Windows instances to stop processing commands and associations. The issue is resolved in build versions>2.2.136.0 - Various bug fixes. 2.2.93.0 diff --git a/agent/framework/processor/executer/outofproc/channel/filechannel.go b/agent/framework/processor/executer/outofproc/channel/filechannel.go index b267e43b8..fa508db61 100644 --- a/agent/framework/processor/executer/outofproc/channel/filechannel.go +++ b/agent/framework/processor/executer/outofproc/channel/filechannel.go @@ -267,7 +267,7 @@ func (ch *fileWatcherChannel) watch() { } case err := <-ch.watcher.Errors: if err != nil { - log.Errorf("file watcher error: %v", err) + log.Errorf("file watcher error: %v", err) } } }