Skip to content

Commit

Permalink
Merge pull request #308 from Icinga:fix/service_check_name_function_n…
Browse files Browse the repository at this point in the history
…ot_public

Fix: Non-public function Get-IcingaServiceCheckName

Fixes function `Get-IcingaServiceCheckName` which was not public anymore since v1.9.0, causing MSSQL plugins to not work properly
  • Loading branch information
LordHepipud authored Jul 14, 2022
2 parents c000249 + 51b2ca6 commit 3a5a882
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
8 changes: 8 additions & 0 deletions doc/31-Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ documentation before upgrading to a new release.

Released closed milestones can be found on [GitHub](https://github.com/Icinga/icinga-powershell-plugins/milestones?state=closed).

## 1.10.0 (2022-08-09)

[Issue and PRs](https://github.com/Icinga/icinga-powershell-plugins/milestone/13?closed=1)

### Bugfixes

* [#308](https://github.com/Icinga/icinga-powershell-plugins/pull/308) Fixes function `Get-IcingaServiceCheckName` which was not public anymore since v1.9.0, causing MSSQL plugins to not work properly

## 1.9.0 (2022-05-03)

[Issue and PRs](https://github.com/Icinga/icinga-powershell-plugins/milestone/12?closed=1)
Expand Down
1 change: 1 addition & 0 deletions icinga-powershell-plugins.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
'Get-IcingaMemoryPerformanceCounter',
'Get-IcingaMemory',
'Get-IcingaProcessData',
'Get-IcingaServiceCheckName',
'Get-IcingaUpdatesHotfix',
'Get-IcingaUpdatesInstalled',
'Get-IcingaWindowsUpdatesPending',
Expand Down
2 changes: 1 addition & 1 deletion provider/private/services/Get-IcingaServiceCheckName.psm1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
function Get-IcingaServiceCheckName()
function Global:Get-IcingaServiceCheckName()
{
param (
[string]$ServiceInput,
Expand Down

0 comments on commit 3a5a882

Please sign in to comment.