We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e45b151 commit 2055b30Copy full SHA for 2055b30
Modules/CippEntrypoints/CippEntrypoints.psm1
@@ -19,9 +19,10 @@ function Receive-CippHttpTrigger {
19
20
function Receive-CippQueueTrigger {
21
Param($QueueItem, $TriggerMetadata)
22
- Write-Host "#### Running $APINAME"
+
23
$Start = (Get-Date).ToUniversalTime()
24
$APIName = $TriggerMetadata.FunctionName
25
+ Write-Host "#### Running $APINAME"
26
Set-Location (Get-Item $PSScriptRoot).Parent.Parent.FullName
27
$FunctionName = 'Push-{0}' -f $APIName
28
$QueueTrigger = @{
0 commit comments