icinga-powershell-framework/lib/core/thread/Set-IcingaEnvironmentThreadName.psm1

9 lines
155 B
PowerShell
Raw Normal View History

2022-03-18 15:58:56 -04:00
function Set-IcingaEnvironmentThreadName()
{
param (
[string]$ThreadName = ''
);
$Global:Icinga.Protected.ThreadName = $ThreadName;
}