Fixes uncatched invisible output

This commit is contained in:
Lord Hepipud 2020-09-15 15:43:56 +02:00
parent 26e335ee8a
commit 854b7fd997
2 changed files with 2 additions and 1 deletions

View file

@ -14,6 +14,7 @@ Released closed milestones can be found on [GitHub](https://github.com/Icinga/ic
### Bugfixes
* [#127](https://github.com/Icinga/icinga-powershell-framework/issues/127) Fixes wrong error message on failed MSSQL connection due to database not reachable by using `-IntegratedSecurity`
* [#128](https://github.com/Icinga/icinga-powershell-framework/issues/128) Fixes unhandled output from loading `System.Reflection.Assembly` which can cause weird side effects for plugin outputs
## 1.2.0 (2020-08-28)

View file

@ -32,7 +32,7 @@ function Start-IcingaTimer()
}
# Load the library first
[System.Reflection.Assembly]::LoadWithPartialName("System.Diagnostics");
[System.Reflection.Assembly]::LoadWithPartialName("System.Diagnostics") | Out-Null;
$TimerObject = New-Object System.Diagnostics.Stopwatch;
$TimerObject.Start();