You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/31-Changelog.md
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13,11 +13,12 @@ Released closed milestones can be found on [GitHub](https://github.com/Icinga/ic
13
13
14
14
### Bugfixes
15
15
16
-
## 1.4.1 (pending)
16
+
## 1.4.1 (2021-03-10)
17
17
18
18
### Bugfixes
19
19
20
20
*[#222](https://github.com/Icinga/icinga-powershell-framework/pull/222) Fixes an issue with [Secure.String] arguments for PowerShell plugins, caused by `ConvertTo-IcingaSecureString` Cmdlet not being pre-loaded
21
+
*[#224](https://github.com/Icinga/icinga-powershell-framework/issues/224) Fixes "memory leak" on background daemon for registered service checks, by clearing the error stack and manually calling the PowerShell garbage collector to force freeing of memory
Copy file name to clipboardExpand all lines: lib/core/logging/Write-IcingaConsoleOutput.psm1
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,11 @@ function Write-IcingaConsoleOutput()
40
40
return;
41
41
}
42
42
43
+
# Never write console output in case the Framework is running as daemon
44
+
if ($null-ne$global:IcingaDaemonData-And$null-ne$global:IcingaDaemonData.FrameworkRunningAsDaemon-And$global:IcingaDaemonData.FrameworkRunningAsDaemon-eq$TRUE) {
0 commit comments